Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to declare and initialize a list in C#?
To declare and initialize a list in C#, firstly declare the list −
List<string> myList = new List<string>()
Now add elements −
List<string> myList = new List<string>() {
"one",
"two",
"three",
};
Through this, we added six elements above.
The following is the complete code to declare and initialize a list in C# −
Example
using System;
using System.Collections.Generic;
class Program {
static void Main() {
// Initializing collections
List<string> myList = new List<string>() {
"one",
"two",
"three",
"four",
"five",
"size"
};
Console.WriteLine(myList.Count);
}
}
Output
6
Advertisements
