C\#사전 을 어떻게 옮 겨 다 니 는 지

1430 단어 C#두루Dictionary
본 논문 의 사례 는 C\#Dictionary 의 구체 적 인 코드 를 어떻게 옮 겨 다 니 는 지 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _02DictionaryIterator
{
  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("      ");
      IteratorDictionary();
      Console.ReadKey();
    }

    /// <summary>
    ///   Dictionary  
    /// </summary>
    private static void IteratorDictionary()
    {
      Dictionary<string, int> dictionary = new Dictionary<string, int>
      {
        {"  ", 1},
        {"  ", 2},
        {"  ", 3},
        {"  ", 4},
        {"  ", 5}
      };

      foreach (KeyValuePair<string, int> keyValuePair in dictionary)
      {
        Console.WriteLine("key:{0}\tvalue:{1}", keyValuePair.Key, keyValuePair.Value);
      }
    }
  }
}
효과 그림:

이상 은 본 고의 모든 내용 입 니 다.여러분 에 게 C\#Dictionary 를 옮 겨 다 니 는 방법 을 가르쳐 드 리 겠 습 니 다.읽 어 주 셔 서 감사합니다.

좋은 웹페이지 즐겨찾기