I want to place a double quotes inside a string but it seems I got an error. Someone can help me?
var User = user.Password;
string body = @"\" + User + ""\";
I want to place a double quotes inside a string but it seems I got an error. Someone can help me?
var User = user.Password;
string body = @"\" + User + ""\";
For this you need to write below code.
var User = user.Password;
string body = "\"" + User + "\"";