professional web development and design
 

.NET Attributes and Reflection

<AttributeUsage(AttributeTargets.Class, _
				Inherited:=True, _
				AllowMultiple:=True)> _
Public Class ClassModifiedAttribute : Inherits System.Attribute

	Private _version As Double
	Private _dateModified As String
	Private _comment As String
	Private _authorName As String
	Private _authorEmail As String

	Public Property Version() As Double
		Get
			Return _version
		End Get
		Set(ByVal Value As Double)
			_version = Value
		End Set
	End Property

Continued on next page

back to development articles back next .NET Attributes and Reflection
Valid HTML 4.01