public override void readContent(string path) { txtProc txtProc = new txtProc(); this.content = txtProc.readTxtFile(path); this.listSegments = txtProc.splitTxtContentToSegment(this.content); }
public override void readContent(string path) { txtProc txtProc = new txtProc(); this.content = txtProc.readTxtFile(path); contentpage contentpage = new contentpage(); contentpage.content = this.content; contentpage.page = 1; listcontentpage.Add(contentpage); //this.listSegments = txtProc.splitTxtContentToSegment(this.content,delimiters,this.fileName); this.listSegments = txtProc.splitTxtContentToSegment2(this.content, delimiters, this.fileName); }