BooRunner.Tools.Constants.Constants C# (CSharp) Method

Constants() static private method

static private Constants ( ) : System.Collections.Generic
return 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