Answers for "declaring a list inc#"

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
11

make a list c#

IList<int> newList = new List<int>(){1,2,3,4};
Posted by: Guest on December-23-2019

C# Answers by Framework

Browse Popular Code Answers by Language