(&q"/> (&q">
Home >Backend Development >C#.Net Tutorial >Key-value pairs in C#
The KeyValuePair class uses C# to store a pair of values in a single list.
Set KeyValuePair and add elements -
var myList = new List<KeyValuePair<string, int>>(); // adding elements myList.Add(new KeyValuePair<string, int>("Laptop", 20)); myList.Add(new KeyValuePair<string, int>("Desktop", 40)); myList.Add(new KeyValuePair<string, int>("Tablet", 60));
Here is the code to learn how to use KeyValuePair and display the keys and values -
Using System; using System.Collections.Generic; class Program { static void Main() { var myList = new List<KeyValuePair<string, int>>(); // adding elements myList.Add(new KeyValuePair<string, int>("Laptop", 20)); myList.Add(new KeyValuePair<string, int>("Desktop", 40)); myList.Add(new KeyValuePair<string, int>("Tablet", 60)); foreach (var val in myList) { Console.WriteLine(val); } } }
The above is the detailed content of Key-value pairs in C#. For more information, please follow other related articles on the PHP Chinese website!