BooRunner.Tools.Constants.Constants C# (CSharp) Метод

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

static private Constants ( ) : System.Collections.Generic
Результат System.Collections.Generic
        static Constants()
        {
            BaseCharToDigits = StrRepHelper.CharDictionaryFromAlphabet(new string(BaseUpperChars), 16U);
            for (int i = 10; i < BaseLowerChars.Length; i++)
            {
                BaseCharToDigits.Add(BaseLowerChars[i], (uint)i);
            }
        }
Constants