コード例 #1
0
 public bool Equals(Int2 other) => _value == other._value && !other._sign;
コード例 #2
0
ファイル: BitStream.cs プロジェクト: replaysMike/AnyBitStream
 public void Write(Int2 value) => WriteInternal(value);
コード例 #3
0
 /// <summary>
 /// Write a 2 bit integer
 /// </summary>
 /// <param name="value"></param>
 public void Write(Int2 value) => BaseStream.Write(value);