C# Class 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.
Inheritance: VerboseFormatInfoBase
Afficher le fichier Open project: ME3Explorer/ME3Explorer Class Usage Examples

Méthodes publiques

Méthode Description
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.

Private Methods

Méthode Description
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.

Method Details

Clone() public méthode

Creates identical copy of this instance.
public Clone ( ) : object
Résultat object

GeneralFormatInfo() public méthode

Default constructor.
public GeneralFormatInfo ( ) : System
Résultat System

GeneralFormatInfo() public méthode

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.
Résultat System

GeneralFormatInfo() public méthode

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.
Résultat System