tags:

views:

39

answers:

2

How can I make a speech mark in a string? The following shows the whole of the line and all code after that (With the Express IDE) to be a comment as well:

Variable = "\""
+3  A: 

Try

Variable = """"
KennyTM
its basically a bit like everything is a literal string @"""" in c# = """" in vb.net
Saint Gerbil
A: 

I prefer Chr(34) or Convert.ToChar(34)

T3hc13h