Answers for "how can i create list of string in 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

Code answers related to "how can i create list of string in c#"

C# Answers by Framework

Browse Popular Code Answers by Language