DXVcs2Git.Core.CommentWrapper.CheckStructure C# (CSharp) Method

CheckStructure() static private method

static private CheckStructure ( string comment ) : bool
comment string
return bool
        static bool CheckStructure(string comment)
        {
            if (string.IsNullOrEmpty(comment))
                return false;
            return parseStructureRegex.IsMatch(comment);
        }