[This is preliminary documentation and is subject to change.]

Defines date when item was introduced

Namespace:  Tools.InternalT
Assembly:  Tools (in Tools.dll) Version: 1.5.2.0

Author: Đonny

Vertion history

1.5.2 (Release)
Marked as obsolete, AuthorAttribute, VersionAttribute and FirstVersionAttribute removed, renamed to FirstVersionAttribute (form FirstVersion).

Syntax

C#
[AttributeUsageAttribute(AttributeTargets.All, AllowMultiple = false, Inherited = false)]
[ObsoleteAttribute("Use <version> XML doc tag instead")]
public class FirstVersionAttribute : Attribute
Visual Basic (Declaration)
<AttributeUsageAttribute(AttributeTargets.All, AllowMultiple := False, Inherited := False)> _
<ObsoleteAttribute("Use <version> XML doc tag instead")> _
Public Class FirstVersionAttribute _
	Inherits Attribute
Visual C++
[AttributeUsageAttribute(AttributeTargets::All, AllowMultiple = false, Inherited = false)]
[ObsoleteAttribute(L"Use <version> XML doc tag instead")]
public ref class FirstVersionAttribute : public Attribute
J#
/** @attribute AttributeUsageAttribute(AttributeTargets.All, AllowMultiple = false, Inherited = false) */
/** @attribute ObsoleteAttribute("Use <version> XML doc tag instead") */
public class FirstVersionAttribute extends Attribute
JScript
public class FirstVersionAttribute extends Attribute

Remarks

This attribute is obsolete, use <version> XML doc tag instead.

Inheritance Hierarchy

System..::.Object
  System..::.Attribute
    Tools.InternalT..::.FirstVersionAttribute

See Also