ResDescriptionAttribute.cs 208 B

123456789101112
  1. using System.ComponentModel;
  2. namespace System.Data
  3. {
  4. sealed class ResDescriptionAttribute : DescriptionAttribute
  5. {
  6. public ResDescriptionAttribute (string description)
  7. : base (description)
  8. {
  9. }
  10. }
  11. }