C# Class Encog.Persist.Persistors.Generic.FieldMapping

A simple mapping that holds the reference, field and target of an object. This is used internally by the object mapper to help resolve references.
Exibir arquivo Open project: encog/encog-silverlight-core

Public Properties

Property Type Description
field System.Reflection.FieldInfo
reff int

Public Methods

Method Description
FieldMapping ( int reff, FieldInfo field, Object target ) : System

Construct a field mapping.

Method Details

FieldMapping() public method

Construct a field mapping.
public FieldMapping ( int reff, FieldInfo field, Object target ) : System
reff int The field reference.
field System.Reflection.FieldInfo The field.
target Object The target that holds the field.
return System

Property Details

field public_oe property

The field object.
public FieldInfo,System.Reflection field
return System.Reflection.FieldInfo

reff public_oe property

The field's reference.
public int reff
return int