AjaxControlToolkit.Reference.Core.Parsing.CommentParser.IsCommentLine C# (CSharp) Метод

IsCommentLine() статический приватный Метод

static private IsCommentLine ( string line ) : bool
line string
Результат bool
        static bool IsCommentLine(string line)
        {
            return Regex.IsMatch(line, "^(\t| )*///");
        }