CodeGenerator.QuoteSnippetString(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the specified string by formatting it with escape codes.
protected:
abstract System::String ^ QuoteSnippetString(System::String ^ value);
protected abstract string QuoteSnippetString (string value);
abstract member QuoteSnippetString : string -> string
Protected MustOverride Function QuoteSnippetString (value As String) As String
Parameters
- value
- String
The string to convert.
Returns
The converted string.
Remarks
This method returns a modified version of the specified string that has been formatted with escape code characters. For example, /"
might be used to represent "
. These escape codes are used to replace elements of the specified string that might otherwise conflict with language syntax.