Delete DelegateCache.cs
This commit is contained in:
parent
e619e04ecf
commit
ca736aba5d
1 changed files with 0 additions and 26 deletions
|
@ -1,26 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Concurrent;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
namespace ARMeilleure.Translation
|
|
||||||
{
|
|
||||||
static class DelegateCache
|
|
||||||
{
|
|
||||||
private static ConcurrentDictionary<string, Delegate> _delegates;
|
|
||||||
|
|
||||||
static DelegateCache()
|
|
||||||
{
|
|
||||||
_delegates = new ConcurrentDictionary<string, Delegate>();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Delegate GetOrAdd(Delegate dlg)
|
|
||||||
{
|
|
||||||
return _delegates.GetOrAdd(GetKey(dlg.Method), (key) => dlg);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string GetKey(MethodInfo info)
|
|
||||||
{
|
|
||||||
return $"{info.DeclaringType.FullName}.{info.Name}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue