Bind.FuncProcessor.CreateWrappers C# (CSharp) Method

CreateWrappers() static private method

static private CreateWrappers ( DelegateCollection delegates, EnumCollection enums ) : FunctionCollection
delegates DelegateCollection
enums EnumCollection
return FunctionCollection
        static FunctionCollection CreateWrappers(DelegateCollection delegates, EnumCollection enums)
        {
            var wrappers = new FunctionCollection();
            foreach (var d in delegates.Values)
            {
                wrappers.AddRange(CreateNormalWrappers(d, enums));
            }
            return wrappers;
        }