Scorpio.Userdata.ScorpioMethodInfo.ScorpioMethodInfo C# (CSharp) Method

ScorpioMethodInfo() public method

public ScorpioMethodInfo ( string name, bool isStatic, Type parameterType, bool param, Type paramType, string parameterTypes ) : System
name string
isStatic bool
parameterType System.Type
param bool
paramType System.Type
parameterTypes string
return System
        public ScorpioMethodInfo(string name, bool isStatic, Type[] parameterType, bool param, Type paramType, string parameterTypes) {
            this.Name = name;
            this.IsStatic = isStatic;
            this.ParameterType = parameterType;
            this.Params = param;
            this.ParamType = paramType;
            this.ParameterTypes = parameterTypes;
        }
    }
ScorpioMethodInfo