- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
/// <summary>
/// Год
/// </summary>
public class Year
{
///<summary>
/// Конструктор
///</summary>
///<param name="year">Год</param>
public Year(int year)
{
Value = year;
}
/// <summary>
/// Значение
/// </summary>
public int Value { get; set; }
}
Nicklasos 15.07.2011 10:53 # −11
Em1ss1oN 15.07.2011 11:21 # −11
qsmart 15.07.2011 12:27 # −11
Не говоря уж о комментах.
guest 15.07.2011 13:40 # −11
Lure Of Chaos 15.07.2011 17:31 # 0
{
Year Year {get; set; }
Month Month {get; set; }
Day Day {get; set; }
}
guest8 09.04.2019 11:11 # −999