SaveTo() 공개 메소드

Save all objects to the specified steam, skip the one specified by the skip parameter. Do not attempt to understand the structure, just copy.
public SaveTo ( WriteXML xmlOut, String skip ) : void
xmlOut Encog.Parse.Tags.Write.WriteXML The XML writer to save the objects to.
skip String The object to skip.
리턴 void
예제 #1
0
        /// <summary>
        /// Merge the objects from this collection into the new one.
        /// Skip the specified object.
        /// </summary>
        /// <param name="location">The location to merge to.</param>
        /// <param name="skip">The object to skip.</param>
        public void MergeObjects(IPersistenceLocation location,
                                 String skip)
        {
            PersistReader reader = new PersistReader(location);

            reader.SaveTo(this.xmlOut, skip);
            reader.Close();
        }
예제 #2
0
 /// <summary>
 /// Merge the objects from this collection into the new one.
 /// Skip the specified object.
 /// </summary>
 /// <param name="location">The location to merge to.</param>
 /// <param name="skip">The object to skip.</param>
 public void MergeObjects(IPersistenceLocation location,
          String skip)
 {
     PersistReader reader = new PersistReader(location);
     reader.SaveTo(this.xmlOut, skip);
     reader.Close();
 }