(sbyte value)
| 50 | } |
| 51 | |
| 52 | [MethodImpl(MethodImplOptions.AggressiveInlining)] |
| 53 | public void WriteInt8(sbyte value) |
| 54 | { |
| 55 | WriteUInt8(unchecked((byte)value)); |
| 56 | } |
| 57 | |
| 58 | [MethodImpl(MethodImplOptions.AggressiveInlining)] |
| 59 | public void WriteUInt16(ushort value) |
no outgoing calls