Beyond_Beyaan.NameGenerator.NameGenerator C# (CSharp) Метод

NameGenerator() статический приватный Метод

static private NameGenerator ( ) : System
Результат System
        static NameGenerator()
        {
            Generator = new List<StringGetter[]>();

            //Seed the random generator
            rnd = new Random(Convert.ToInt32(DateTime.Now.Ticks % Int32.MaxValue));

            Generator.AddRange(new StringGetter[][] {
                Seq(NEC, V, NEC, V, EC),
                Seq(NEC, V, NEC, V, NEC, V, EC),
                Seq(NEC, V, NEC, EC),
                Seq(NEC, V, EC),
                Seq(NEC, V, S, NEC, V, NEC, V, EC),
                Seq(NEC, V, S, NEC, V, NEC, V, NEC, V, EC)}
                );
        }