// Constructor the second // filePart specified--search // through a portion of mp3 // file public MP3Check(string inputFile, int filePart) { this.inputFile = inputFile; this.filePart = filePart; this.mp3Info = new MP3Details(); }
// Constructor the first // Use default filePart--i.e. // search through the entire // file. public MP3Check(string inputFile) { this.inputFile = inputFile; this.mp3Info = new MP3Details(); }