Answers for "declare list with a model in c#"

C#
22

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
1

c# declare an int list

List<int> intList = new List<int>();
Posted by: Guest on February-27-2020

C# Answers by Framework

Browse Popular Code Answers by Language