I want to compile my code in C #. I parsed the string "....",
string[] parts = line.Split(new[] { '....' }, 2);
Then I got an error message:
Too many characters in a literal character
The line looks like this:
abc.... starting word in english
It seems to me that I need to convert ....to =. Then everything will work fine. Is there another way?
Steven spielberg
source
share