mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-03 13:28:30 +08:00
55 lines
1.2 KiB
C#
55 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Mhf.Server.Web
|
|
{
|
|
public class WebCollection<TKey, TValue>
|
|
{
|
|
private Dictionary<TKey, TValue> _collection;
|
|
private Func<TKey, TKey> _keyTransformer;
|
|
|
|
public WebCollection() : this(null)
|
|
{
|
|
}
|
|
|
|
public WebCollection(Func<TKey, TKey> keyTransformer)
|
|
{
|
|
_collection = new Dictionary<TKey, TValue>();
|
|
_keyTransformer = keyTransformer;
|
|
}
|
|
|
|
public ICollection<TKey> Keys => _collection.Keys;
|
|
|
|
public void Add(TKey key, TValue value)
|
|
{
|
|
if (_keyTransformer != null)
|
|
{
|
|
key = _keyTransformer(key);
|
|
}
|
|
|
|
_collection.Add(key, value);
|
|
}
|
|
|
|
public TValue Get(TKey key)
|
|
{
|
|
if (_collection.TryGetValue(key, out TValue value))
|
|
{
|
|
return value;
|
|
}
|
|
|
|
return default(TValue);
|
|
}
|
|
|
|
public bool ContainsKey(TKey key)
|
|
{
|
|
return _collection.ContainsKey(key);
|
|
}
|
|
|
|
public TValue this[TKey key]
|
|
{
|
|
get => _collection[key];
|
|
set => _collection[key] = value;
|
|
}
|
|
}
|
|
}
|