ResCategoryAttribute.cs 193 B

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