What end-of-line identifier should I use (e.g. for output to text files)?
There are many choices:
- vbCrLf
- ControlChars.CrLf
- ControlChars.NewLine
- Environment.NewLine
- A static member in some C# class in the application (requires mixed-language solution): public static string LINEEND = "\r\n";
What is best practice?