HandCoded.Finance.Date.Date C# (CSharp) Method

Date() private method

Constructs a Date using its DateValue and TimeZone components.
private Date ( DateValue dateValue, TimeZone timeZone ) : System
dateValue DateValue The component.
timeZone TimeZone The component or null.
return System
        internal Date(DateValue dateValue, TimeZone timeZone)
            : base(timeZone)
        {
            this.dateValue = dateValue;
        }

Same methods

Date::Date ( int day, int month, int year ) : System
Date::Date ( int day, int month, int year, bool utc ) : System
Date::Date ( int day, int month, int year, int offset ) : System