I notice the compiler complain that there is unused variable name br in every DeserializeLengthDelimited method of every message class.
The first line of every such method has this line:
BinaryReader br = new BinaryReader(stream);
but this variable is really not every used.
There is BinaryReader br1 = new BinaryReader(ms1); line deep inside the method - I'm not sure if it is related.
I notice the compiler complain that there is unused variable name br in every DeserializeLengthDelimited method of every message class. The first line of every such method has this line: BinaryReader br = new BinaryReader(stream);
but this variable is really not every used. There is BinaryReader br1 = new BinaryReader(ms1); line deep inside the method - I'm not sure if it is related.