你遇到过的源代码中最好的注释是什么?


当前回答

这实际上是我在实现原型转换为实际代码时所做的:

// Abandon all hope you who needs to debug this

是的,有比我聪明的人在之后重构了代码(它必须有一个好的结局)。

其他回答

Exception up = new Exception("Something is really wrong.");
throw up;  //ha ha
Case 1:
   ...
   break;
   ...
//I don't want do do this but [my coworker] says it's part of the code standard
default:
   break;
if(m_measures =/*=*/ --index)
{
    ....

一个奇怪而恰当的有趣错别字:

断言(0);//永远不要在这一点上犯错

为什么你不应该将你的软件开发外包的一个经典案例:

public class Contact
{
    //...    

    /// <summary>
    /// Gets or sets the name of the first.
    /// </summary>
    /// <value>The name of the first.</value>
    public string FirstName
    {
        get { return _firstName; }
        set { _firstName = value; }
    }
}