clojure.lang.CljCompiler.Ast.NewInstanceExpr.AddMethod C# (CSharp) Метод

AddMethod() статический приватный Метод

static private AddMethod ( Dictionary mm, IPersistentVector sig, MethodInfo m ) : void
mm Dictionary
sig IPersistentVector
m System.Reflection.MethodInfo
Результат void
        static void AddMethod(Dictionary<IPersistentVector, IList<MethodInfo>> mm, IPersistentVector sig, MethodInfo m)
        {
            IList<MethodInfo> value;
            if (!mm.TryGetValue(sig, out value))
            {
                value = new List<MethodInfo>();
                mm[sig] = value;
            }
            value.Add(m);
        }