使用NUnit和XML注释进行C#注释的格式

时间:2011-09-02 07:56:03

标签: c# xml nunit

使用NUnit编写C#代码并且XML注释是否有首先需要的首选格式?

将:

using NUnit.Framework;


namespace FooBar{

    /// <summary> 
    /// The <c>foo</c> class tests bar
    /// </summary>
    [TestFixture]
    public class Foo{
    }
}

是正确的还是会:

using NUnit.Framework;


namespace FooBar{

    [TestFixture]
    /// <summary> 
    /// The <c>foo</c> class tests bar
    /// </summary>
    public class Foo{
    }
}

更好吗?

1 个答案:

答案 0 :(得分:7)

这不是NUnit特有的 - 它是任何属性。

这是一个偏好问题,但至少对我来说,评论应该在代码之前 - 属性也算作代码。