Class DHDate
An object representing a local date (year, month, day of month).
The MinValue and MaxValue constants provide
the minimum and maximum dates representable in Deephaven.
Inheritance
System.Object
DHDate
Assembly: DeephavenOpenAPI.dll
Syntax
public class DHDate : object
Constructors
DHDate(Int32, Int32, Int32)
Declaration
public DHDate(int year, int monthValue, int dayOfMonth)
Parameters
Type |
Name |
Description |
System.Int32 |
year |
|
System.Int32 |
monthValue |
|
System.Int32 |
dayOfMonth |
|
Fields
MaxValue
Declaration
public static readonly DHDate MaxValue
Field Value
MaxYear
Declaration
public const int MaxYear = null
Field Value
Type |
Description |
System.Int32 |
|
MinValue
Declaration
public static readonly DHDate MinValue
Field Value
MinYear
Declaration
public const int MinYear = null
Field Value
Type |
Description |
System.Int32 |
|
Properties
DayOfMonth
Declaration
public int DayOfMonth { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
MonthValue
Declaration
public int MonthValue { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Year
Declaration
public int Year { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Methods
ToString()
Declaration
public override string ToString()
Returns
Type |
Description |
System.String |
|