Files
linux-packaging-mono/mcs/class/System/ReferenceSources/SRCategoryAttribute.cs

10 lines
170 B
C#
Raw Normal View History

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