Man, this crap's always harder than it looks. Damned C# Flexibility. Now I need to handle the @ symbol somehow too. Because, this is also a legal string..
string bill = @"\Bill\";
I guess if the @ character is seen, I can just go by the straight quotes, ignoring the escape characters (because in C# the escape \" isn't valid when you have the @ in front of it..)
Sweet, so it looks like I'm done with this part of the deal, unless you can think of another way to break it.
Bill
Last edited by conipto; Nov 19th, 2005 at 10:18 PM.