Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public int ReadUnsignedShort()
- {
- int ch1 = ClientInput.Read();
- int ch2 = ClientInput.Read();
- if ((ch1 | ch2) < 0)
- {
- throw new EndOfStreamException();
- }
- return (ch1 << 8) + (ch2 << 0);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement