How to include quotes in a string
Escape them with backslashes.
"I want to learn \"C#\""
As well as escaping quotes with backslashes, also see SO question 2911073 which explains how you could alternatively use double-quoting in a @-prefixed string:
string msg = @"I want to learn ""c#""";