How i add the sign " (quoat) to the string ?
Printable View
How i add the sign " (quoat) to the string ?
Insert the escape sequence \" as an embedded quotation mark:
This is only one way, there are a few others.Code:string s = "\"Hello World\"";
Console.WriteLine(s);
This might also work
Code:String quote = @""Quote"";