C# Класс Gammtek.Conduit.Text.Formatting.GeneralFormatInfo

Format provider applied to general objects which could not be conveniently formatted using more specific format providers. VerboseFormatInfo delegates calls to this class when none other formatter is applicable to given object. This class is internal and cannot be used directly.
Наследование: VerboseFormatInfoBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Clone ( ) : object

Creates identical copy of this instance.

GeneralFormatInfo ( ) : System

Default constructor.

GeneralFormatInfo ( GeneralFormatInfo other ) : System

Copy constructor which copies all values from another instance of this class.

GeneralFormatInfo ( VerboseFormatInfoBase other ) : System

Copy constructor which copies values common to all verbose format providers.

Приватные методы

Метод Описание
ExtractMembers ( object arg ) : GeneralMemberDescription[]

Extracts all members of a given instance that should be formatted to the output string. All public properties (which are not write-only) and fields are eligible to be included in the output.

Format ( StringBuilder sb, string format, object arg, IFormatProvider formatProvider, int &maxLength ) : bool

Converts the value of a specified object to an equivalent string representation using specified format and culture-specific formatting information.

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

Clone() публичный Метод

Creates identical copy of this instance.
public Clone ( ) : object
Результат object

GeneralFormatInfo() публичный Метод

Default constructor.
public GeneralFormatInfo ( ) : System
Результат System

GeneralFormatInfo() публичный Метод

Copy constructor which copies all values from another instance of this class.
public GeneralFormatInfo ( GeneralFormatInfo other ) : System
other GeneralFormatInfo Instance from which all contained values are copied to this instance.
Результат System

GeneralFormatInfo() публичный Метод

Copy constructor which copies values common to all verbose format providers.
public GeneralFormatInfo ( VerboseFormatInfoBase other ) : System
other VerboseFormatInfoBase Instance from which common values are copied.
Результат System