Provides conversion to formatting with escape codes.
[Visual Basic] MustOverride Protected Function QuoteLiteralString( _ ByVal value As String, _ ByVal escapeUnicode As Boolean _ ) As String [C#] protected abstract string QuoteLiteralString( string value, bool escapeUnicode ); [C++] protected: virtual String* QuoteLiteralString( String* value, bool escapeUnicode ) = 0; [JScript] protected abstract function QuoteLiteralString( value : String, escapeUnicode : Boolean ) : String;
The converted string.
If the value of escapeUnicode is set to true, character values above 80 will be converted to use escape code formatting.
CodeGenerator Class | CodeGenerator Members | System.CodeDOM.Compiler Namespace