Answers for "c# is create new list"

C#
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
0

Create list C#

var list = new List<string> { "test1", "test2", "test3" };
Posted by: Guest on March-26-2022

C# Answers by Framework

Browse Popular Code Answers by Language