CodeGeneration.EscapeBlockCommentContent(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.
Escapes content so that it is safe for inclusion in a block comment. For example: "<#" + EscapeBlockCommentContent(userContent) + "#>"
public:
static System::String ^ EscapeBlockCommentContent(System::String ^ value);
public:
static Platform::String ^ EscapeBlockCommentContent(Platform::String ^ value);
static std::wstring EscapeBlockCommentContent(std::wstring const & value);
public static string EscapeBlockCommentContent (string value);
static member EscapeBlockCommentContent : string -> string
Public Shared Function EscapeBlockCommentContent (value As String) As String
Parameters
- value
- String
The content to be included in a block comment.
Returns
Content with all block comment characters escaped.