Skip to content

Commit 890f406

Browse files
Update
2 parents 05dddf5 + b19c43d commit 890f406

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EZCode/EZHelp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ public bool IsType(object obj, object type)
554554
throw;
555555
}
556556
}
557-
public object ArrayParse(object array, object separator) => ObjectParse(array, "list").ToString().Split(StringParse(separator)).Select(x => x.Trim()).ToArray();
557+
public object ArrayParse(object array, object separator) => ObjectParse(array, "list").ToString().Split(StringParse(separator)).Select(x => x.Trim()).ToArray();
558558
public string ArrayStringParse(object array) => ObjectParse(array, "list", to_string: false, arraySeperator: ", ").ToString();
559559
public int ArrayLength(object array)
560560
{

0 commit comments

Comments
 (0)