How do you do a verbatim string literal in VB.NET?
This is achieved in C# as follows:
String str = @"c:\folder1\file1.txt";
This means that the backslashes are treated literally and not as escape characters.
How is this achieved in VB.NET?
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.
All string literals in VB.NET are verbatim string literals. Simply write
VB.NET doesn’t support inline control characters. So backslashes are always interpreted literally.
The only character that needs to be escaped is the double quotation mark, which is escaped by doubling it, as you do in C#