This may seem simple.
It could be vbNewLine
or it can be
However, that is NOT equivalent with "\n"
That is equivalent with
\r\n for non-Unix platforms, or \n for Unix platforms.
What about if I want \n no matter what. \
I tried to search for similar questions and I can't even find it.
There is nothing here either.
So not easy to fine.
Update: One answer says that "\n" means vbNewLine both in windows and in Linux.
Well, I am writing a vb.net windows program that interact with linux machine. You know, usual API stuff. In which case I need a character in windows that always mean "\n" in linux.
Basically, I need the chr(10) character. Not chr(10)+chr(13) character.
I think the answer I wrote my self is the answer to that.
And I do not think there is a simple answer on that.
Differences Between vbLf, vbCrLf & vbCr Constants may make things clear. However, people that find that question are people that already guess that vbLf may be a solution.
In fact, the questions and the answers over there do not even link "\n" to vbLF at all. They just say that vbLF is line feed. Is it "\n"? Another technicality
This question answer the question more directly. So what's equivalent to linux/unix "\n" no matter what is vbLf