| | |
| | | field = field.Replace(" ", "");
|
| | | if (type.Contains("int[][]"))
|
| | | {
|
| | | return StringUtility.Contact(field, " = JsonMapper.ToObject<int[][]>(tables", "[", index, "]", ")", "; ");
|
| | | return StringUtility.Contact(field, " = JsonMapper.ToObject<int[][]>(tables", "[", index, "].Replace(\"(\", \"[\").Replace(\")\", \"]\")); ");
|
| | | }
|
| | | else if (type.Contains("float[][]"))
|
| | | {
|
| | | return StringUtility.Contact(field, " = JsonMapper.ToObject<float[][]>(tables", "[", index, "]", ")", "; ");
|
| | | return StringUtility.Contact(field, " = JsonMapper.ToObject<float[][]>(tables", "[", index, "].Replace(\"(\", \"[\").Replace(\")\", \"]\")); ");
|
| | | }
|
| | | else if (type.Contains("int[]"))
|
| | | {
|