当前位置 : 主页 > 网页制作 > xml >

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

来源:互联网 收集:自由互联 发布时间:2021-06-13
使用NUnit和 XML注释编写C#代码时,是否需要首选格式? 将: using NUnit.Framework;namespace FooBar{ /// summary /// The cfoo/c class tests bar /// /summary [TestFixture] public class Foo{ }} 是正确的还是: using NUni
使用NUnit和 XML注释编写C#代码时,是否需要首选格式?

将:

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{
    }
}

会更好?

这不是NUnit特有的 – 它是任何属性.

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

网友评论