Re: Possible parsing error when matching braces in strings
Hi,
I noticed a curious issue with brace matching (% command)
Note the following C# function:
public static bool IsRTF(string rtf)
{
return rtf.StartsWith(@"{\rtf");
}
Go to the bottom brace and press %, it will jump to the { within the string instead of the correct match.
Cheers,
Darren