hi there,
i playing around with an async server, i use BeginReceive with byte array to store incoming data, when a "big" data come, a call back receive can not read it all in one time, so i need repeat call back, i want know how to cache all incoming data in byte array? like byte buffer class in java

searching..., seem they will do: convert a part of data (in byte array) to string and use StringBuilder to store it,...