Answers for "create a list of string c#"

C#
24

create List c#

using System.Collections.Generic
//type is your data type (Ej. int, string, double, bool...)
List<type> newList = new List<type>();
Posted by: Guest on September-27-2020
0

c# list of strings

List<string> stringList = new List<string>();
stringList.Add("hello");
Posted by: Guest on May-30-2021

C# Answers by Framework

Browse Popular Code Answers by Language