using System;
using System.Collections.Generic;
public class RepeatDictionary<TKey, TValue> : IEnumerable<KeyValuePair<TKey, TValue>>
{
private readonly List<TKey> _keys = new List<TKey>();
private readonly List<TValue> _values = new List<TValue>(
C# 实现一个支持重复键值的字典
最新推荐文章于 2024-11-12 15:58:49 发布