QuickFix.Settings.IsComment C# (CSharp) Method

IsComment() public static method

public static IsComment ( string s ) : bool
s string
return bool
        public static bool IsComment(string s)
        {
            if (s.Length < 1)
                return false;
            return '#' == s[0];
        }