Answers for "make a list c#"

C#
20

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
16

C# list

List<string> myListOfStrings = new List<string> 
{
	"this",
	"is",
	"my",
	"list"
};
Posted by: Guest on August-05-2020
9

make a list c#

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

decalre an int list mvc

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

How to make lists in c#

// This Example uses Object list but you can do Lists from Everything you want.
// It works like Arrays.

public List<object> objects = new List<object>();

public void AddToList(object arg)
{
	// Add Objects to the list with:
	objects.Add(arg); 
}

public object[] GetObjects()
{
	return objects.ToArray();
}
Posted by: Guest on January-19-2021
5

how to create a list c#

C# By Magnificent Mamba on Dec 23 2019
IList<int> newList = new List<int>(){1,2,3,4};
Posted by: Guest on January-24-2020

C# Answers by Framework

Browse Popular Code Answers by Language