Ejemplo n.º 1
0
 public static bool TryParse(string value, out TestHeaderValue result)
 {
     if (string.Equals("valid", value))
     {
         result = new TestHeaderValue();
         return(true);
     }
     result = null;
     return(false);
 }
 public static bool TryParse(string value, out TestHeaderValue result)
 {
     if (string.Equals("valid", value))
     {
         result = new TestHeaderValue();
         return true;
     }
     result = null;
     return false;
 }