this blog contains information for .net and sql stuffs. You can find various tips and tricks to overcome problem you may be facing in ...

Tuesday, April 28, 2009

Add new Line Character in Vb.net String.

While we want new line in C# we just use "\n" but if you use this in vb.net you will not get the desired result. Vb.net is bit a different then others you have some other choice to do this...

For new line character you can use one of following items..

VB Constants: vbNewLine, vbCrLf
Character Function:
Chr(13)
VB Control Chars:
ControlChars.NewLine, ControlChars.CrLf
Environment Variable:
Environment.NewLine

No comments: