clojure.lang.GenClass.ComputeOverloadNames C# (CSharp) Метод

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

static private ComputeOverloadNames ( Dictionary overloads ) : HashSet
overloads Dictionary
Результат HashSet
        static HashSet<string> ComputeOverloadNames(Dictionary<string, List<MethodSignature>> overloads)
        {
            HashSet<string> varNames = new HashSet<string>();

            foreach (KeyValuePair<string, List<MethodSignature>> kv in overloads)
                foreach (MethodSignature sig in kv.Value)
                    varNames.Add(OverloadName(sig));

            return varNames;
        }