Exemplo n.º 1
0
 public ManagedUInt8(ManagedNumber op)
 {
     this.n = (byte)op;
 }
Exemplo n.º 2
0
 public override void Set(ManagedNumber op)
 {
     this.n = (byte)op;
 }
 public ManagedUInt64(ManagedNumber op)
 {
     this.n = (ulong)op;
 }
 public override void Set(ManagedNumber op)
 {
     this.n = (ulong)op;
 }
 public ManagedUInt32(ManagedNumber op)
 {
     this.n = (uint)op;
 }
Exemplo n.º 6
0
 public abstract void Set(ManagedNumber value);
Exemplo n.º 7
0
 public override void Set(ManagedNumber op)
 {
     this.n = (short)op;
 }
Exemplo n.º 8
0
 public ManagedInt16(ManagedNumber op)
 {
     this.n = (short)op;
 }
 public override void Set(ManagedNumber op)
 {
     this.n = (BigRational)op;
 }