Skip to content

Instantly share code, notes, and snippets.

@about36km
Created January 25, 2018 08:13
Show Gist options
  • Select an option

  • Save about36km/ad8c421d2eb91fc261e1171ca0f020a1 to your computer and use it in GitHub Desktop.

Select an option

Save about36km/ad8c421d2eb91fc261e1171ca0f020a1 to your computer and use it in GitHub Desktop.
Imports System.Runtime.CompilerServices
Module StringExtension
<Extension()>
Public Function Quote(original As String, Optional str As String = ControlChars.Quote) As String
Return str & original & str
End Function
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment