A simple bookmark question

Possible duplicate:
Programmatically using a tab character in .NET?

Is there an equivalent value for "\ t" like System.Environment.NewLine for "\ r \ n"?

I am looking for something built into the framework. I know this is a trivial question, but I could not find anything during my session on Google. I hope / wish it.

Thank!

+3
source share
1 answer

The new line varies from platform to platform, but the tab does not do this, so it’s safe to use "\t". I think you could create a constant and use it for convenience.

+4
source

Source: https://habr.com/ru/post/1796310/


All Articles