- Code: Select all
char[] quotes = new char[] { '"' };
It's a declaration of a character array of a single char of a quotation symbol.
This works fine:
- Code: Select all
char[] quotes = new char[] { 'a' };
And this is a workaround:
- Code: Select all
char q = '"'; char[] quotes = new char[] { q };
Thanks for the awesome program!
