Exemple #1
0
 public ZincType(ZincCompound compound, ZincScalar scalar)
 {
     this.data = (ulong)(0x03 * (byte)compound + (byte)scalar);
 }
Exemple #2
0
 public ZincType(ZincCompound compound, ZincType type)
 {
     ulong low = type.data % 0x03;
     this.data = low + 0x03 * (type.data - low + (byte)compound);
 }
Exemple #3
0
        public ZincType(ZincCompound compound, ZincType type)
        {
            ulong low = type.data % 0x03;

            this.data = low + 0x03 * (type.data - low + (byte)compound);
        }
Exemple #4
0
 public ZincType(ZincCompound compound, ZincScalar scalar)
 {
     this.data = (ulong)(0x03 * (byte)compound + (byte)scalar);
 }