C# Class HandCoded.Finance.Temporal

The Temporal class provides storage for the optional timezone offset portion of Date, DateTime and Time instances.
Datei anzeigen Open project: formicary/fpml-toolkit-csharp

Protected Properties

Property Type Description
timeZone TimeZone

Protected Methods

Method Description
IsDigit ( char ch ) : bool

Determines if a character is a digit (e.g. 0..9). Used by parsing methods in derived classes.

Temporal ( TimeZone timeZone ) : System

Constructs a Temporal instance having either a UTC time or no timezone depending on the argument.

Method Details

IsDigit() protected static method

Determines if a character is a digit (e.g. 0..9). Used by parsing methods in derived classes.
protected static IsDigit ( char ch ) : bool
ch char The character to be tested.
return bool

Temporal() protected method

Constructs a Temporal instance having either a UTC time or no timezone depending on the argument.
protected Temporal ( TimeZone timeZone ) : System
timeZone TimeZone The value or null.
return System

Property Details

timeZone protected_oe property

Holds the TimeZone if present.
protected TimeZone timeZone
return TimeZone