| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // System.IO.IODescriptionAttribute.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System;
- using System.ComponentModel;
- namespace System.IO {
- [AttributeUsage (AttributeTargets.All)]
- public class IODescriptionAttribute : DescriptionAttribute {
- #region Fields
- string description;
- #endregion // Fields
- #region Constructors
- public IODescriptionAttribute (string description)
- : base (description)
- {
- }
-
- #endregion // Constructors
- #region Methods
- public override string Description {
- get { return DescriptionValue; }
- }
- #endregion // Methods
- }
- }
|