Page 1 of 1

C# help

PostPosted: Wed May 31, 2017 2:41 pm
by lion228
hello what full c# code app can remove the symbol " need it to remove it from this txt file

https://pastebin.com/nMcckuAn

Re: C# help

PostPosted: Wed May 31, 2017 3:34 pm
by Leodagan
Code: Select all
public string Replace(string oldValue, string newValue)
you can use
Code: Select all
"\""
as oldValue, and
Code: Select all
""
as newValue...

Re: C# help

PostPosted: Wed May 31, 2017 3:50 pm
by lion228
can you post the full code so I just add it to visual studio as I get errors adding this

Re: C# help

PostPosted: Thu Jun 01, 2017 4:29 am
by Leodagan
No I can't :?

I have no idea how you open the file, and no idea if you want to remove the symbol from the ASCII representation of the packet Dump or from the hexa representation of the packet...

If you want "full code" you should begin by posting the snippet that you're working on !