System.CSharpHelpers.IsPrefixTwoUnderscore C# (CSharp) Method

IsPrefixTwoUnderscore() static private method

static private IsPrefixTwoUnderscore ( string value ) : bool
value string
return bool
        internal static bool IsPrefixTwoUnderscore(string value)
        {
            if (value.Length < 3)
            {
                return false;
            }
            else
            {
                return ((value[0] == '_') && (value[1] == '_') && (value[2] != '_'));
            }
        }