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

12 lines
208 B
C#
Raw Normal View History

using System.ComponentModel;
namespace System.Data
{
sealed class ResDescriptionAttribute : DescriptionAttribute
{
public ResDescriptionAttribute (string description)
: base (description)
{
}
}
}