0
public class ExpiringDictionary<TKey, TValue> : IDictionary<TKey, TValue> {
private class ExpiringValueHolder<T>
{
public T Value { get; set; }
.
.
.
}
private IDictionary<TKey, ExpiringValueHolder<TValue>> innerDictionary;
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
{
//throw new NotImplementedException();
return (IEnumerator<KeyValuePair<TKey, TValue>>)innerDictionary.GetEnumerator();
}
}
這裏是代碼給我鑄造錯誤。有可能爲函數GetEnumerator()轉換返回值嗎?C#類型鑄造或轉換
謝謝你的幫助。
這很酷。感謝您的快速響應和簡單的解決方案.. – AstronBnX 2013-02-18 11:07:20