Answers for "declare list c#"

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

c# list declaration

List<int> primeNumbers = new List<int>();
Posted by: Guest on January-31-2021

C# Answers by Framework

Browse Popular Code Answers by Language