using directives
Options
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
-
I've incorporated some improvements to this in the latest beta. It will now parse the expressions above (although it's still not completely robust).
-
Super, thank you Joe