Example #1
0
 public Response Get(string url, string optionsHash)
 {
     return(makeRequest(new HttpOptions
     {
         Method = "get",
         BaseUri = url,
         AdditionalOptions = _hasher.Parse(optionsHash)
     }));
 }
Example #2
0
 public static void Main()
 {
     for (int i = 0; i < 100000; i++)
     {
         var hasher = new RubyHasher();
         var o      = hasher.Parse(@"{:foo => ""bar"" }");
     }
 }