C# Класс numl.Model.Property

Concrete property. Used to convert any given data type to a number.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Convert ( object o ) : IEnumerable

Convert an object to a list of numbers.

Convert ( double val ) : object

Convert the numeric representation back to the original type.

Equals ( object obj ) : bool

Equality test

GetColumns ( ) : IEnumerable

Retrieve the list of expanded columns. If there is a one-to-one correspondence between the type and its expansion it will return a single value/.

GetHashCode ( ) : int

Return hash

PostProcess ( IEnumerable examples ) : void

Used as a postprocessing step when overridden. Can be used to look at the entire data set as a whole after converting single elements.

PostProcess ( object example ) : void

Used as a postprocessing step when overriden. Can be used to look at the current object in question fater converting single elements.

PreProcess ( IEnumerable examples ) : void

Used as a preprocessing step when overridden. Can be used to look at the entire data set as a whole before converting single elements.

PreProcess ( object example ) : void

Used as a preprocessing step when overriden. Can be used to look at the current object in question before converting single elements.

Property ( ) : System

Default constructor.

ToString ( ) : string

Returns a string that represents the current object.

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

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

Convert an object to a list of numbers.
Thrown when the requested operation is invalid.
public Convert ( object o ) : IEnumerable
o object Object.
Результат IEnumerable

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

Convert the numeric representation back to the original type.
public Convert ( double val ) : object
val double .
Результат object

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

Equality test
public Equals ( object obj ) : bool
obj object object to compare
Результат bool

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

Retrieve the list of expanded columns. If there is a one-to-one correspondence between the type and its expansion it will return a single value/.
public GetColumns ( ) : IEnumerable
Результат IEnumerable

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

Return hash
public GetHashCode ( ) : int
Результат int

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

Used as a postprocessing step when overridden. Can be used to look at the entire data set as a whole after converting single elements.
public PostProcess ( IEnumerable examples ) : void
examples IEnumerable Examples.
Результат void

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

Used as a postprocessing step when overriden. Can be used to look at the current object in question fater converting single elements.
public PostProcess ( object example ) : void
example object .
Результат void

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

Used as a preprocessing step when overridden. Can be used to look at the entire data set as a whole before converting single elements.
public PreProcess ( IEnumerable examples ) : void
examples IEnumerable Examples.
Результат void

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

Used as a preprocessing step when overriden. Can be used to look at the current object in question before converting single elements.
public PreProcess ( object example ) : void
example object Example.
Результат void

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

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

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

Returns a string that represents the current object.
public ToString ( ) : string
Результат string