Ejemplo n.º 1
0
 private void UpdateData(int netObjectID)
 {
     this.data.Clear();
     this.FillData();
     this.data.Add(this.DataID.Value);
     IntUnion.AddBytes(this.data, netObjectID);
 }
Ejemplo n.º 2
0
        public static void AddBytes(List <byte> bytes, int value)
        {
            IntUnion floatUnion = new IntUnion {
                Value = value
            };

            bytes.Add(floatUnion.Byte0);
            bytes.Add(floatUnion.Byte1);
            bytes.Add(floatUnion.Byte2);
            bytes.Add(floatUnion.Byte3);
        }