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 "";
        }