System.CSharpHelpers.CSharpHelpers C# (CSharp) Method

CSharpHelpers() static private method

static private CSharpHelpers ( ) : System.Collections.Generic
return System.Collections.Generic
        static CSharpHelpers()
        {
            s_fixedStringLookup = new Dictionary<string, object>();
            for (int i = 0; i < s_keywords.Length; i++)
            {
                string[] values = s_keywords[i];
                if (values != null)
                {
                    for (int j = 0; j < values.Length; j++)
                    {
                        s_fixedStringLookup.Add(values[j], null);
                    }
                }
            }
        }