PaulColbert
New member
- Joined
- Aug 22, 2023
- Messages
- 1
- Programming Experience
- Beginner
In VB.NET, what is considerate the 'proper' method for the following?
VB.NET:
'Force a new line
vbNewLine
Environment.NewLine
vbCrLf
ControlChars()
VB.NET:
'String Concatenation
+ or &
VB.NET:
'Converting a Type to String
CStr()
ToString()
CType()
DirectCast()