Created
January 25, 2018 08:13
-
-
Save about36km/ad8c421d2eb91fc261e1171ca0f020a1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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