I want to compile my C# code. I was parsing a string by "....",
string[] parts = line.Split(new[] { '....' }, 2);
Then I got an error:
Too many characters in character literal
The line looks like this:
abc.... starting word in english
I think that I need to convert ....
to =
. Then everything would work fine. Is there any other way?