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