End Google Ads 201810 - BS.net 01 --> How do I create a new line for my text in the BodyText field of a Dialog in Visual Studio 2005 Installer's User Interface?

In C#: BodyText = "This is line one.\r\nThis is line two."

In VB: BodyText = "This is line one." + vbCrLf + "This is line two."

HTML: BodyText = "This is line one
This is line two."

I don't know how to text the VB version, because the BodyText field does not include quotes.

The C# and HTML versions both fail whenever I create my setup files.