C# 클래스 Gammtek.Conduit.Text.Formatting.VerboseFormatInfo

Provides extended formatting serivces that can be applied to all reference and value types. This class merely analyzes object that should be formatted and then delegates formatting to the specific formatter most appropriate for the given type.
상속: VerboseFormatInfoBase
파일 보기 프로젝트 열기: ME3Explorer/ME3Explorer 1 사용 예제들

공개 메소드들

메소드 설명
Clone ( ) : object

Creates deep copy of this instance.

VerboseFormatInfo ( ) : System

Default constructor.

VerboseFormatInfo ( Type instanceType, string instanceName ) : System

Constructor which allows caller to set name and type of the instance for which appropriate string is formatted using this object.

VerboseFormatInfo ( VerboseFormatInfo other ) : System

Copy constructor. Used to copy common property values from another formatter of the same type, which results in creating output string which is formatted in the same way.

VerboseFormatInfo ( VerboseFormatInfoBase other ) : System

Copy constructor. Used to copy only those property values that are common to all classes derived from VerboseFormatInfoBase.

비공개 메소드들

메소드 설명
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 deep copy of this instance.
public Clone ( ) : object
리턴 object

VerboseFormatInfo() 공개 메소드

Default constructor.
public VerboseFormatInfo ( ) : System
리턴 System

VerboseFormatInfo() 공개 메소드

Constructor which allows caller to set name and type of the instance for which appropriate string is formatted using this object.
public VerboseFormatInfo ( Type instanceType, string instanceName ) : System
instanceType System.Type Type of the instance for which string is being formatted.
instanceName string Name of the instance for which string is being formatted.
리턴 System

VerboseFormatInfo() 공개 메소드

Copy constructor. Used to copy common property values from another formatter of the same type, which results in creating output string which is formatted in the same way.
public VerboseFormatInfo ( VerboseFormatInfo other ) : System
other VerboseFormatInfo Instance from which contents is copied to new instance of this class.
리턴 System

VerboseFormatInfo() 공개 메소드

Copy constructor. Used to copy only those property values that are common to all classes derived from VerboseFormatInfoBase.
public VerboseFormatInfo ( VerboseFormatInfoBase other ) : System
other VerboseFormatInfoBase Instance from which contents is copied to new instance of this class.
리턴 System