G 
		
								
				
				
			
		Guest
I am building a string from a combination of hardcoded string literals and user input (via textbox).  I know about using @"c:\temp\filename.txt" to ignore escape sequences.  Now let's say I have a string variable (to hold file path information) that is populated from a textbox.  When I view the contents of the variable, while debugging, it shows @"c:\temp\filename.txt".  But, when I concatenate it with other string literals or variables using the + operator, or even using a StringBuilder, the path info shown in the final output will be escaped.  How can I tell C# to ignore the escape sequence already contained within a variable
Thanks in advance
Don
				
			Thanks in advance
Don