How put Invert Comma (") in C#
How put Invert Comma (") in a string of C#. Below is an example
I need to put string:
var = "Data"; var2 = "Second Data";
in a C# variable so that inverted commas of above string should also come in that variable.
I tried this :
CsharpVar = "var = ""Data""; var2 = ""Second Data"";"
but its not working in C#.
Thanks in Advance