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

encode_byte() static private method

static private encode_byte ( byte buf, int b, int &offset ) : void
buf byte
b int
offset int
return void
		static void encode_byte (byte[] buf, int b, ref int offset) {
			buf [offset] = (byte)b;
			offset ++;
		}
Connection