| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.Timers.TimersDescriptionAttribute
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- using System.ComponentModel;
- namespace System.Timers
- {
- [AttributeUsage(AttributeTargets.All)]
- public class TimersDescriptionAttribute : DescriptionAttribute
- {
- public TimersDescriptionAttribute (string description)
- : base (description)
- {
- }
- public override string Description
- {
- get {
- return base.Description;
- }
- }
- }
- }
|