VB.NET Replace double byte(2byte) quote character to single byte


   Private Sub Replace2ByteToSingleByte()
       Dim text As String = "Selecting “No” will turn off auto time zone."

       text = StrConv(text, VbStrConv.Narrow)
   End Sub

--------------------------------
Result: Selecting "No" will turn off auto time zone.