Answers for "check if object is array in c#"

C#
0

c# isarray

bool IsArray(object o) { return o is Array; }
bool IsArray(object o) { return o.GetType().IsArray; }
Posted by: Guest on July-15-2021

Code answers related to "check if object is array in c#"

C# Answers by Framework

Browse Popular Code Answers by Language