Sep.Git.Tfs.Core.GitChangeInfo.Debug C# (CSharp) Method

Debug() private static method

private static Debug ( string input, Match match, Regex regex ) : void
input string
match System.Text.RegularExpressions.Match
regex System.Text.RegularExpressions.Regex
return void
        private static void Debug(string input, Match match, Regex regex)
        {
            Trace.WriteLine("Regex: " + regex);
            Trace.WriteLine("Input: " + input);
            foreach (var groupName in regex.GetGroupNames())
            {
                Trace.WriteLine(" -> " + groupName + ": >>" + match.Groups[groupName].Value + "<<");
            }
        }