csharpier icon indicating copy to clipboard operation
csharpier copied to clipboard

using static System.* usings not ordered before other static usings like using System.* ones

Open Meowtimer opened this issue 1 year ago • 0 comments

Input: using static System.IO.Path; using static PrivateMcNamespace;

Output: using static PrivateMcNamespace; using static System.IO.Path;

Expected behavior: using static System.IO.Path; using static PrivateMcNamespace;

Meowtimer avatar Feb 01 '24 11:02 Meowtimer