Prepare() public méthode

public Prepare ( string separator ) : void
separator string
Résultat void
 public ReleaseReader(TextReader reader)
 {
     textReader = new FindTextReader(reader);
     textReader.Prepare("</release>");
 }
 public ReleaseReader(string filename)
 {
     this.streamReader = new StreamReader(filename);
     textReader        = new FindTextReader(this.streamReader);
     textReader.Prepare("</release>");
 }
 public ArtistReader(TextReader reader)
 {
     textReader = new FindTextReader(reader);
     textReader.Prepare("</artist>");
 }