VB.NET: identifier for TAB?
.net, vb.net
Solution
Thumb up for ControlChars.Tab! vb* constants are there for backward compatibility, avoid them.
Problem
What identifier should I use for TAB (e.g. for output to text files)? There are many choices: - vbTab - ControlChars.Tab - A constant (or public member) in my application set to Chr(9) What is best practice? And why?