jellyfin/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/Hashtable.cs
2017-06-21 02:46:57 -04:00

24 lines
515 B
C#

using System.Collections.Generic;
using System.Linq;
namespace SharpCifs.Util.Sharpen
{
public class Hashtable : Dictionary<object, object>
{
public void Put(object key, object value)
{
if (this.ContainsKey(key))
this[key] = value;
else
this.Add(key, value);
}
public object Get(object key)
{
return this.ContainsKey(key)
? this[key]
: null;
}
}
}