Example #1
0
 internal ParameterGen(ParameterGenCollection owner, int position, Type parameterType, ParameterAttributes attributes, string name, bool va)
 {
     this.owner         = owner;
     this.position      = position;
     this.parameterType = parameterType;
     this.attributes    = attributes;
     this.name          = name;
     this.va            = va;
 }
Example #2
0
 internal ParameterGen(TOuterContext context, ParameterGenCollection owner, int position, Type parameterType, ParameterAttributes attributes, string name, bool va)
     : base(owner, position, parameterType, attributes, name, va)
 {
     this.context = context;
 }