Click or drag to resize

DocComment  Conversion (String to DocComment)

Implicit conversion of a string to a DocComment (actually, a DocText).

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public static implicit operator DocComment (
	string text
)

Parameters

text
Type: SystemString
The string to be converted.

Return Value

Type: DocComment
A generated DocText wrapping the specified string.
Remarks
This allows strings to be passed directly to any method expecting a DocComment type without having to call new DocText(text).
See Also