System.CSharpHelpers.IsKeyword C# (CSharp) Method

IsKeyword() static private method

static private IsKeyword ( string value ) : bool
value string
return bool
        internal static bool IsKeyword(string value)
        {
            return s_fixedStringLookup.ContainsKey(value);
        }