There seems to be quite a few ways to add a tab to a text file
VB Code:
  1. ControlChars.Tab
  2. Convert.ToChar(Keys.Tab)
  3. vbTab
  4. \t
  5. ChrW(20)
Have I missed any?
Is there a recommended preference of one over another?
The first one seems most succinct and .NET-like