Mono.Debugger.Soft.Connection.decode_short C# (CSharp) Method

decode_short() static private method

static private decode_short ( byte packet, int &offset ) : int
packet byte
offset int
return int
		static int decode_short (byte[] packet, ref int offset) {
			int res = ((int)packet [offset] << 8) | (int)packet [offset + 1];
			offset += 2;
			return res;
		}
Connection