C# Class Accord.Math.MatrixFormatProviderBase

Base class for IMatrixFormatProvider implementers.
Inheritance: IMatrixFormatProvider
ファイルを表示 Open project: accord-net/framework

Public Methods

Method Description
GetFormat ( Type formatType ) : object

Returns an object that provides formatting services for the specified type. Currently, only IMatrixFormatProvider is supported.

Protected Methods

Method Description
MatrixFormatProviderBase ( IFormatProvider innerProvider ) : System

Initializes a new instance of the MatrixFormatProviderBase class.

Method Details

GetFormat() public method

Returns an object that provides formatting services for the specified type. Currently, only IMatrixFormatProvider is supported.
public GetFormat ( Type formatType ) : object
formatType System.Type /// An object that specifies the type of format /// object to return.
return object

MatrixFormatProviderBase() protected method

Initializes a new instance of the MatrixFormatProviderBase class.
protected MatrixFormatProviderBase ( IFormatProvider innerProvider ) : System
innerProvider IFormatProvider The inner format provider.
return System