WikiFunctions.TalkPages.Processor.DefaultSortMatchEvaluator C# (CSharp) 메소드

DefaultSortMatchEvaluator() 공개 메소드

public DefaultSortMatchEvaluator ( Match match ) : string
match System.Text.RegularExpressions.Match
리턴 string
        public string DefaultSortMatchEvaluator(Match match)
        {
            FoundDefaultSort = true;
            if (match.Groups["key"].Captures.Count > 0)
                DefaultSortKey = match.Groups["key"].Captures[0].Value.Trim();
            return "";
        }