Answers for "c# how to initialise an array and give a size later?"

C#
0

declare string array c# without size

List<string> myStringList = new List<string();
myStringList.Add("Test 1");
myStringList.Add("Test 2");
Posted by: Guest on May-22-2020

Code answers related to "c# how to initialise an array and give a size later?"

C# Answers by Framework

Browse Popular Code Answers by Language