예제 #1
0
 public static bool TryParse(string s, out Matrix2x3 result)
 {
     result = Zero;
     return(ParseHelper.TryParseMatrix <Matrix2x3>(s, ref result));
 }