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