VB.NET Single Quote in String
Dim lQuotes As Char = Convert.ToChar(&H201C) ' “
Dim rQuotes As Char = Convert.ToChar(&H201D) ' ”
Dim str As String = String.Format("{0}Hello World{1}", lQuotes, rQuotes)
Console.WriteLine(str) ' “Hello World”
Uninterested Unicorn