10 lines
170 B
C#
Raw Normal View History

namespace System.ComponentModel
{
sealed class SRCategoryAttribute : CategoryAttribute
{
public SRCategoryAttribute (string category)
: base(category)
{
}
}
}