c# isarray

50

c# isarray -

bool IsArray(object o) { return o is Array; }
bool IsArray(object o) { return o.GetType().IsArray; }

Comments

Submit
0 Comments