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