在阅读另一位程序员的代码时,他使用了我从未见过的格式。例如
namespace MyNs.HereWeAre
{//tab here for some reason
public class SomeClass
{//here's another tab
public string Method()
{//yet another tab
string _variable = "";//no tab implementation
return _variable;
}
}//eof - class (Yes these eof comments are on every file)
}//eof - namespace
// eof - file
我承认...此代码使我生气。很难实现这种风格。需要与IDE(Visual Studio)提供的默认格式作斗争。
如果我知道这种药理有充分的理由,我可以更容易地吞下这种药。这种风格是否源于其他编程语言/ IDE?