I tried to get an empty string for my Discord webhook and noticed, that this line seems to confuse the CParser:
string content = "\"\"";
When I try to compile, it gives me this error:
CParser: quoted string not closed on line 80, ...
when I do
string content = "\" \"";
It works without any problems