- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
/// <summary>Read-Only property. Gets the Age.</summary>
public Int32 Age {
get {
Int32 age = 0;
if(this.dateOfBirth != DateTime.MaxValue){
String temp = (DateTime.Now.Subtract(this.dateOfBirth).TotalDays / 365).ToString();
age = Convert.ToInt32(temp.Substring(0, temp.IndexOf(".")));
}
return (age);
}
}
gecko 02.09.2009 17:36 # 0
Между прочим, высокосные года никто не отменял
guest 02.09.2009 18:15 # +1
guest 02.09.2009 18:50 # 0
viktorious 03.09.2009 16:59 # 0
guest 03.09.2009 22:29 # +1
guest 19.09.2009 02:29 # 0
2_71828182846 24.08.2021 20:37 # 0