CodeGenerator.QuoteSnippetString(String) Method

Definition

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.

Applies to