中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何在C#中將List轉為其他集合

c#
小樊
111
2024-06-28 20:31:27
欄目: 編程語言

在C#中,可以通過以下幾種方法將List轉為其他集合:

  1. 使用ToList()方法將List轉為新的List集合:
List<int> list = new List<int> { 1, 2, 3, 4, 5 };
List<int> newList = list.ToList();
  1. 使用ToArray()方法將List轉為數組:
List<int> list = new List<int> { 1, 2, 3, 4, 5 };
int[] array = list.ToArray();
  1. 使用ToDictionary()方法將List轉為字典集合:
List<KeyValuePair<int, string>> list = new List<KeyValuePair<int, string>> { 
    new KeyValuePair<int, string>(1, "One"),
    new KeyValuePair<int, string>(2, "Two"),
    new KeyValuePair<int, string>(3, "Three")
};
Dictionary<int, string> dictionary = list.ToDictionary(x => x.Key, x => x.Value);
  1. 使用ToHashSet()方法將List轉為HashSet集合:
List<int> list = new List<int> { 1, 2, 3, 4, 5 };
HashSet<int> hashSet = list.ToHashSet();

這些方法可以根據具體需求選擇合適的集合類型來轉換List。

0
尖扎县| 佳木斯市| 通许县| 墨竹工卡县| 合山市| 怀柔区| 会泽县| 大足县| 柘荣县| 锦州市| 定西市| 廊坊市| 沽源县| 婺源县| 泾川县| 临汾市| 南宁市| 克拉玛依市| 孟州市| 平原县| 建阳市| 靖江市| 永济市| 嘉义县| 泾阳县| 南丰县| 论坛| 平乡县| 宕昌县| 吴川市| 遂川县| 吕梁市| 奉节县| 襄汾县| 平江县| 涟水县| 云南省| 峨山| 进贤县| 精河县| 康平县|