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.
Show file 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 property

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

reff public property

The field's reference.
public int reff
return int