C#: How should TCP socket buffer data be handled? As bytes or converted to an ascii string?
I am using methods that are involved in parsing specific data from the returned tcp socket buffer, which practice would be best?
Should I process/parse my data in it's raw byte form? Or should I process it after convert it to an ascii string since string datatypes have niftier text operations?