//指定したオフセットへのint値の設定 public void SetUInt(uint val, int offset) { //uint n = Util.htonl(val); //Set(Conv.GetBytes(n), 4, offset); Set(Conv.GetBytes(val), 4, offset); }
public void SetULong(ulong val, int offset) { //ulong n = Util.htonl(val); //Set(Conv.GetBytes((long)n), 8, offset); Set(Conv.GetBytes(val), 8, offset); }
//指定したオフセットへのShot値の設定 public void SetUShort(ushort val, int offset) { //ushort n = Util.htons(val); //Set(Conv.GetBytes(n),2,offset); Set(Conv.GetBytes(val), 2, offset); }