C# Class Encog.Util.SerializeObject

SerializeObject: Load or save an object using DotNet serialization.
Exibir arquivo Open project: encog/encog-silverlight-core

Public Methods

Method Description
Load ( string filename ) : object

Load the specified filename.

Save ( string filename, object obj ) : void

Save the specified object.

Private Methods

Method Description
SerializeObject ( ) : System.IO

Private constructor, call everything statically.

Method Details

Load() public static method

Load the specified filename.
public static Load ( string filename ) : object
filename string The filename to load from.
return object

Save() public static method

Save the specified object.
public static Save ( string filename, object obj ) : void
filename string The filename to save to.
obj object The object to save.
return void