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| )*///");
        }