about summary refs log tree commit diff
path: root/IrcStates/Extensions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IrcStates/Extensions.cs')
-rw-r--r--IrcStates/Extensions.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/IrcStates/Extensions.cs b/IrcStates/Extensions.cs
deleted file mode 100644
index 181ac80..0000000
--- a/IrcStates/Extensions.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Linq.Expressions;
-using System.Reflection;
-
-namespace IrcStates
-{
-    public static class Extensions
-    {
-        public static Delegate CreateDelegate(this MethodInfo methodInfo, object target)
-        {
-            if (methodInfo == null) return null;
-
-            var types = methodInfo.GetParameters().Select(p => p.ParameterType);
-
-            Func<Type[], Type> getType;
-            if (methodInfo.ReturnType == typeof(void))
-            {
-                getType = Expression.GetActionType;
-            }
-            else
-            {
-                getType = Expression.GetFuncType;
-                types   = types.Concat(new[] {methodInfo.ReturnType});
-            }
-
-            return methodInfo.IsStatic
-                ? Delegate.CreateDelegate(getType(types.ToArray()), methodInfo)
-                : Delegate.CreateDelegate(getType(types.ToArray()), target, methodInfo);
-        }
-
-        public static void UpdateWith<TKey, TValue>(this Dictionary<TKey, TValue> dict, Dictionary<TKey, TValue> other)
-        {
-            if (dict == null || other == null || !other.Any()) return;
-
-            foreach (var (key, value) in other) dict[key] = value;
-        }
-    }
-}