Babel.Compiler.SupertypingAdapterMethod.SupertypingAdapterMethod C# (CSharp) Method

SupertypingAdapterMethod() public method

public SupertypingAdapterMethod ( MethodBuilder methodBuilder, MethodInfo adapteeMethod, int parameterCount ) : System
methodBuilder System.Reflection.Emit.MethodBuilder
adapteeMethod System.Reflection.MethodInfo
parameterCount int
return System
        public SupertypingAdapterMethod(MethodBuilder methodBuilder,
                                    MethodInfo adapteeMethod,
                                    int parameterCount)
        {
            this.methodBuilder = methodBuilder;
            this.adapteeMethod = adapteeMethod;
            this.parameterCount = parameterCount;
        }
SupertypingAdapterMethod