Friday, 28 July 2017

c# - How to do a verbatim string literal in VB.NET?




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?


Answer



All string literals in VB.NET are verbatim string literals. Simply write



Dim str As String = "c:\folder1\file1.txt"


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#




Dim s As String = """Ahoy!"" cried the captain." ' "Ahoy!" cried the captain.

No comments:

Post a Comment

casting - Why wasn't Tobey Maguire in The Amazing Spider-Man? - Movies & TV

In the Spider-Man franchise, Tobey Maguire is an outstanding performer as a Spider-Man and also reprised his role in the sequels Spider-Man...