Skip to main content

RCS0038: Remove blank line between using directives with same root namespace

WARNING

This analyzer is obsolete. Use RCS0015 instead.

Properties

PropertyValue
Default Severitydisabled 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
{
}

Applies to