Hello all,
I'm using UE 24.xx on Windows with the csharp.uew wordfile. I have a problem with a string containing a trailing backslash. When such a string is encountered, the remainder of the file gets interpreted for highlighting purposes as part of the string.
Example:
fileName = Path.Combine(@"..\logs\", fileName);
The red formatted part is also highlighted as string although not belonging to the verbatim string.
If I remove the last backslash then the highlighting is correct. I even tried changing to :
fileName = Path.Combine(@"..\logs" + "\", fileName);
with no effect.
I'm using UE 24.xx on Windows with the csharp.uew wordfile. I have a problem with a string containing a trailing backslash. When such a string is encountered, the remainder of the file gets interpreted for highlighting purposes as part of the string.
Example:
fileName = Path.Combine(@"..\logs\", fileName);
The red formatted part is also highlighted as string although not belonging to the verbatim string.
If I remove the last backslash then the highlighting is correct. I even tried changing to :
fileName = Path.Combine(@"..\logs" + "\", fileName);
with no effect.