RCS0038: Remove blank line between using directives with same root namespace
WARNING
This analyzer is obsolete. Use RCS0015 instead.
Properties
Property | Value |
---|---|
Default Severity | disabled by default |
Minimum language version | - |
Examples
Example #1
diagnostic.cs
using System;
using System.Linq;
namespace N
{
}
fix.cs
using System;
using System.Linq;
namespace N
{
}