c# empty array length code example
Example 1: c# check if array is empty
if(array == null || array.Length == 0)
Example 2: c# empty array
object[] emptyArray = new object[0];
Example 3: how to empty an array c#
Array.Clear(arr, 0, arr.Length);