How to Add missing `using` using hotkeys?
Closed this issue · 1 comments
it19862 commented
I'm trying to add the missing using
with: Ctrl + .
, Alt + U
.
Nothing is happening.
I have a code
using System;
using System.Diagnostics;
namespace Folder_NS_02
{
public class Test
{
void Main(string[] args)
{
List<string> ItemsLst = new List<string>();
}
}
}
If I understand correctly, then after pressing Ctrl + .
, Alt + U
CS-script.npp
will add to the code the line using System.Collections.Generic;
.
I have nothing going on.
Questions.
- Am I doing everything right?
- How do I do this correctly?
oleg-shilo commented