KeyValuePair<TKey, TValue>

作者:追风剑情 发布于:2018-12-4 11:44 分类:C#

示例

  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Test3
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10.  
  11. KeyValuePair<string, int> key = new KeyValuePair<string, int>("aaa", 123);
  12. Console.WriteLine(key.ToString());
  13.  
  14. Dictionary<KeyValuePair<string, int>, string> dic = new Dictionary<KeyValuePair<string, int>, string>();
  15. dic.Add(key, "567");
  16. Console.WriteLine(dic[key]);
  17.  
  18. Console.Read();
  19. }
  20. }
  21. }

运行测试

111.png


  1. namespace System.Collections.Generic
  2. {
  3. public struct KeyValuePair<TKey, TValue>
  4. {
  5. public KeyValuePair(TKey key, TValue value);
  6.  
  7. public TKey Key { get; }
  8. public TValue Value { get; }
  9.  
  10. public override string ToString();
  11. }
  12. }

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号