Exemple #1
0
 public static void TryParse(out TryParseStructWithGoodAndBad result)
 {
     result = new();
 }
Exemple #2
0
 public static bool TryParse(string?value, out TryParseStructWithGoodAndBad result)
 {
     result = new();
     return(false);
 }