Sure thing:
Before NArrange:
namespace Dragon.Library
{
using System;
using System.Collections.ObjectModel;
using LookupDictoinary = System.Collections.Generic.Dictionary<string, string>;
public static class DDIDecoder
{
private static LookupDictoinary compendiumLookups;
static DDIDecoder()
{
DDIDecoder.compendiumLookups = new LookupDictoinary();
}
}
}
After NArrange:
namespace Dragon.Library
{
using System;
using LookupDictoinary = System.Collections.Generic.Dictionary<string, string>;
using System.Collections.ObjectModel;
public static class DDIDecoder
{
private static LookupDictoinary compendiumLookups;
static DDIDecoder()
{
DDIDecoder.compendiumLookups = new LookupDictoinary();
}
}
StyleCop error:
SA1209: Using alias directives must be placed after all using namespace directives.
Cato