Below is my source data.
string s = "text"some text in quotes next text.";
when i try to assign, it's throwing an error.
when i use this \
escape character before ", it is working fine.
string s = "text\"some text in quotes\" next text.";
but my client will send data like below only
text"some text in quotes next text.
how can I assign the above value to string?
I have tried using like below, but throwing error.
string a1 = @"text"some text in quotes next text.";