IntelliTect / IntelliTect/CodingGuidelines
INTL0101 Flag Attribute if anything is on same line
未关闭
enhancement
- 主要语言
- C#
- 星标
- 12
- 派生
- 16
- 平均合并
- 2 分钟
- 30 天内合并 PR
- 7
描述
```
public enum Foo
{
[A]Bar
}
```
should be
```
public enum Foo
{
[A]
Bar
}
```
Also consider
`[A]public void Bar() { }`
贡献指南
评估
这个 Issue 还没有评估数据。