I have a short question.
I want do put this \tssr>”&\8=f23′ into a String (Language C#).
But the compiler always shows an error because for example “\8” is a command.
can someone help me?
Thank you very mutch.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just write
\\8instead of\8. Or put an @ in front of the string. Other characters also need to be escaped with the\character:or this:
the backslash \ is used for escaping special characters, like tab or newline. Because of that, the first character also needs to be escaped, because \t is the escape code for Tab.