C# Класс HandCoded.Finance.Temporal

The Temporal class provides storage for the optional timezone offset portion of Date, DateTime and Time instances.
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
timeZone TimeZone

Защищенные методы

Метод Описание
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.

Описание методов

IsDigit() защищенный статический Метод

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.
Результат bool

Temporal() защищенный Метод

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.
Результат System

Описание свойств

timeZone защищенное свойство

Holds the TimeZone if present.
protected TimeZone timeZone
Результат TimeZone