HotDog's Blog

Hotdog (Robert Verpalen) about C# and vb.net

This blog hosted by:
http://blogs.vbcity.com      
  Home :: Syndication  :: Login

JunJuly 2008Aug
SMTWTFS
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789

Articles

Archives

Topics

CONTACT

Fun but useful linkies

General

VS 2005

Wolfenstein ET

Just a small snippet, but an often asked question none the less ;-)

 

Public Class Person

Public BirthDate As Date

'.... other person data (lastname, first name , etc. )

Public ReadOnly Property Age() As Integer

Get

Dim a As Integer = DateTime.Now.Year - BirthDate.Year

If DateTime.Now.DayOfYear < BirthDate.DayOfYear Then a -= 1

Return a

End Get

End Property

End Class

posted on Thursday, August 12, 2004 12:18 AM