stubbed prototype method to support comparing two commits

This commit is contained in:
Brendan Forster
2014-03-08 16:06:28 +11:00
parent afb028a2fa
commit 26127efa2f
10 changed files with 72 additions and 0 deletions
+5
View File
@@ -26,6 +26,11 @@ namespace Octokit
return new Uri(string.Format(CultureInfo.InvariantCulture, pattern, args), UriKind.Relative);
}
public static string UriEncode(this string input)
{
return System.Net.WebUtility.UrlEncode(input);
}
static readonly Regex _optionalQueryStringRegex = new Regex("\\{\\?([^}]+)\\}");
public static Uri ExpandUriTemplate(this string template, object values)
{