mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-27 02:56:54 +01:00
merge common implementations and server implementations
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace SharpCifs.Util.Sharpen
|
||||
{
|
||||
public class Hashtable : Dictionary<object, object>
|
||||
{
|
||||
public void Put(object key, object value)
|
||||
{
|
||||
Add(key, value);
|
||||
}
|
||||
|
||||
public object Get(object key)
|
||||
{
|
||||
var m_key = Keys.SingleOrDefault(k => k.Equals(key));
|
||||
|
||||
return m_key != null ? this[m_key] : null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user