public static string NewLineToHtmlBreak(
string html,
bool is_xhtml = false
)
Public Shared Function NewLineToHtmlBreak (
html As String,
Optional is_xhtml As Boolean = false
) As String
Dim html As String
Dim is_xhtml As Boolean
Dim returnValue As String
returnValue = UtilHtml.NewLineToHtmlBreak(html,
is_xhtml)
public:
static String^ NewLineToHtmlBreak(
String^ html,
bool is_xhtml = false
)
static member NewLineToHtmlBreak :
html : string *
?is_xhtml : bool
(* Defaults:
let _is_xhtml = defaultArg is_xhtml false
*)
-> string
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
Dim html As String = "
Paragraph 1
Paragraph 2
Paragraph 3
"
Dim str As String = NewLineToHtmlBreak(html, is_xhtml:=False)
Console.WriteLine(str)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.