c3 add item to array code example
Example 1: c# how to append in array
List ls = new List();
ls.Add("Hello");
Example 2: add item to an array c#
List l = new List(){"one","two","tree","four",};
List ls = new List();
ls.Add("Hello");
List l = new List(){"one","two","tree","four",};