Visual Studio - blank line at the end of each new file

前端 未结 1 1258
孤街浪徒
孤街浪徒 2021-02-19 17:24

Why does VS add a blank line at the end of each new file I create? I use VS to create .NET projects (not C++ or something).

Is there any special reason? Historical compa

1条回答
  •  误落风尘
    2021-02-19 17:32

    It is recommended to have a blank line at the end of each file for navigability purposes. Think what happens if someone opens your code with vim for example and uses a keymap to jump from empty line to empty line. Or, if he decides to add another portion of code at the end of file he can quickly do a GO and enter it instead of having to scroll until the end of file.

    Also, source control tools will report more changes if you don't have a trailing blank line when you try to insert code at the end of file.

    0 讨论(0)
提交回复
热议问题