using list in OOP c# code example
Example 1: C# list
List<string> myListOfStrings = new List<string>
{
"this",
"is",
"my",
"list"
};
Example 2: decalre an int list mvc
List<int> intList = new List<int>();
List<string> myListOfStrings = new List<string>
{
"this",
"is",
"my",
"list"
};
List<int> intList = new List<int>();