QuickFix.Settings.IsSection C# (CSharp) Method

IsSection() public static method

public static IsSection ( string s ) : bool
s string
return bool
        public static bool IsSection(string s)
        {
            if (s.Length < 2)
                return false;
            return s[0] == '[' && s[s.Length - 1] == ']';
        }