using directives
when pasting in code that contains "using" directives like
LINQPad nicely asks if it should "Move 'using' directives into Query Properties?".
However, it doesn't do this in some situations where I believe it should:
using IEnumerable<string>;
using static Math;
LINQPad nicely asks if it should "Move 'using' directives into Query Properties?".
However, it doesn't do this in some situations where I believe it should:
using Project = PC.MyCompany.Project;
using static PC.MyCompany.ProjectExample<SomeType>;
Comments