Answers for "c# - create list of number and string"

C#
15

c sharp list of strings

// Create a list of strings using 'new List<string>{}'
List<string> stringList = new List<string>{"string1", "string2"};
Posted by: Guest on February-20-2020
32

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

C# Answers by Framework

Browse Popular Code Answers by Language