list of dictionary in c# code example
Example 1: array list dictionary c#
int[] myIntArray = new int[10];
myIntArray[0] = 0;
myIntArray[1] = 10;
myIntArray[2] = 20;
myIntArray[3] = 30;
// Assignment via loop
for (int i=0; i<myIntArray.Length; i++)
{
myIntArray[i] = i * 10;
}
// Foreach loop over array
foreach (int element in myIntArray)
{
Console.WriteLine("${element}");
}
Example 2: array list dictionary c#
using System.Collections.Generic;
List<string> myList = new List<string>();
myList.Add("Hello");
myList.Add("World");
myList.Add(10); // Compiler Error