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