Dictionary
Tolibjonov Abdulloh
using System.Collections.Generic;Misol:
Dictionary<string, string> Mdic = new Dictionary<string, string>();
Mdic.Add("1", ".NET"); //1 juftliklar soni
Mdic.Add("2", "C#"); //2
Mdic.Add("3", "Asp.NET");//3
Mdic.Add("4", "LINQ"); //4
Console.WriteLine($"juftliklar soni : {Mdic.Count}");
foreach (var item in Mdic)
{
Console.WriteLine($"Kalit = {item.Key} Qiymat = {item.Value}");
}




Last updated
Was this helpful?