(&q"/> (&q">

Heim  >  Artikel  >  Backend-Entwicklung  >  Schlüssel-Wert-Paare in C#

Schlüssel-Wert-Paare in C#

王林
王林nach vorne
2023-08-25 22:49:022042Durchsuche

Die

C# 中的键值对

KeyValuePair-Klasse speichert mithilfe von C# ein Wertepaar in einer einzelnen Liste.

KeyValuePair festlegen und Elemente hinzufügen -

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));

Hier ist der Code, um zu lernen, wie man KeyValuePair verwendet und Schlüssel und Werte anzeigt -

Beispiel

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);
      }
   }
}

Das obige ist der detaillierte Inhalt vonSchlüssel-Wert-Paare in C#. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:tutorialspoint.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen