Skip to content

Instantly share code, notes, and snippets.

@ezaurum
Created February 4, 2015 15:01
Show Gist options
  • Save ezaurum/fdcb0dce79ed900d5fb8 to your computer and use it in GitHub Desktop.
Save ezaurum/fdcb0dce79ed900d5fb8 to your computer and use it in GitHub Desktop.
Exception Test
class Test
{
private static Dictionary<HTTPProtocolID, Uri> _makeUri = HTTPProtocolUri.MakeUri(Host);
}
public static class HTTPProtocolUri
{
public static Dictionary<int, Uri> MakeUri()
{
return new Dictionary<int, Uri>
{
{1, new Uri("users")},
{1, new Uri("facebook/users")},
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment