Encog.App.Analyst.Script.Prop.ScriptProperties.PerformRevert C# (CSharp) Method

PerformRevert() public method

Perform a revert.
public PerformRevert ( String>.IDictionary revertedData ) : void
revertedData String>.IDictionary The source data to revert from.
return void
        public void PerformRevert(IDictionary<String, String> revertedData)
        {
            _data.Clear();
            EngineArray.PutAll(revertedData, _data);
        }