(&q"/> (&q">

Home  >  Article  >  Backend Development  >  Key-value pairs in C#

Key-value pairs in C#

王林
王林forward
2023-08-25 22:49:021990browse

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 ​​-

Example

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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete