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


当前回答

我刚刚注意到自己在写这个

// not brilliant solution, but fair enough heh.

其他回答

//ha, you thought I was lazy didnt ya?!
// Hard to explain

它最后也坏了。难怪很难解释清楚

long john; // silver
// This procedure is really good for your dorsolateral prefrontal cortex.

你们中有些人,由于某种特殊的原因,不知道DPC,当你深入学习新东西时,你大脑的这一部分会亮起来。

/// <summary>
/// The possible outcomes of an update operation (save or delete)
/// </summary>
public enum UpdateResult
{

    /// <summary>
    /// Updated successfully
    /// </summary>
    Success = 0,

    /// <summary>
    /// Updated successfully
    /// </summary>
    Failed = 1
}