2.8 Compiler error XS9078
Posted: Wed May 26, 2021 10:49 pm
I notice both Wolfgang and Chris discussed this error on this thread, https://www.xsharp.eu/forum/private-pro ... rror#17655, I want to ask a different question about how to correct this compile error. Our original code look like:
To get pass XS9078 error, we changed this line to:
I tried to use an escape key such as
""" or "/""
Got a different compile. Is there another way beside using 4 double-quotes? Thanks.
Code: Select all
FWrite(pCsv,'"'+cText+'"')
Code: Select all
FWrite(pCsv,""""+cText+"""")
""" or "/""
Got a different compile. Is there another way beside using 4 double-quotes? Thanks.