10 lines
170 B
C#
10 lines
170 B
C#
|
namespace System.ComponentModel
|
||
|
{
|
||
|
sealed class SRCategoryAttribute : CategoryAttribute
|
||
|
{
|
||
|
public SRCategoryAttribute (string category)
|
||
|
: base(category)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|