Exemple #1
0
 static string CtorParamTypeFor(StructField f)
 {
     if (f.IsArray() || !f.IsValueType())
     {
         return($"const {f.TypeName}&");
     }
     return(f.TypeName);
 }