c# declare empty array of strings code example
Example 1: c# declare empty string array
string[] stringArray = new string[] {};
Example 2: how to empty an array c#
Array.Clear(arr, 0, arr.Length);
string[] stringArray = new string[] {};
Array.Clear(arr, 0, arr.Length);