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
Datei anzeigen Open project: ME3Explorer/ME3Explorer Class Usage Examples

Public Methods

Method 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

Method 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 method

Creates identical copy of this instance.
public Clone ( ) : object
return object

GeneralFormatInfo() public method

Default constructor.
public GeneralFormatInfo ( ) : System
return System

GeneralFormatInfo() public method

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.
return System

GeneralFormatInfo() public method

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.
return System