AjaxControlToolkit.Reference.Core.Parsing.CommentParser.IsCommentLine C# (CSharp) Method

IsCommentLine() static private method

static private IsCommentLine ( string line ) : bool
line string
return bool
        static bool IsCommentLine(string line)
        {
            return Regex.IsMatch(line, "^(\t| )*///");
        }