I get information through responseStreamReader.ReadToEnd().ToString();
.
But before displaying it on the User screen I want to edit it. How to proceed?
I get information through responseStreamReader.ReadToEnd().ToString();
.
But before displaying it on the User screen I want to edit it. How to proceed?
According to the comments of the question, I believe you wanted to know how to change the contents of a string. In that case, what @David said is a possibility:
reponseStreamReader.ReadToEnd().ToString().Replace("OK ", "");
But there are many functions that modify a string, which are documented in that MSDN link .