I'm localizing and need to find all string literals in my source code. I
don't want to find any of the literals that will end up in resources
however. As I don't use the "Me" keyword, I know these are found in the
InitialiseComponent method and are therefore literals on a line of code
preceeded with "Me.".
So, is there a regular expression that will find all literals NOT on a line
preceeded with "Me."?
Thanks :/