示例#1
0
 public FloatNullDecorator(IParameterCore <float> core)
     : base(core.Input)
 {
     this.core = core;
 }
 public DoubleNullDecorator(IParameterCore <double> core)
     : base(core.Input)
 {
     this.core = core;
 }
示例#3
0
 public UIntNullDecorator(IParameterCore <uint> core)
     : base(core.Input)
 {
     this.core = core;
 }
 public BooleanNullDecorator(IParameterCore <bool> core)
     : base(core.Input)
 {
     this.core = core;
 }
 public ULongNullDecorator(IParameterCore <ulong> core)
     : base(core.Input)
 {
     this.core = core;
 }
示例#6
0
 public HexArrayNullDecorator(IParameterCore <byte[]> core)
     : base(core.Input)
 {
     this.core = core;
 }
 public DecimalNullDecorator(IParameterCore <decimal> core)
     : base(core.Input)
 {
     this.core = core;
 }