How to Split a String into an Array Of Strings?
问题 Actually i am reading an xps.file in to my Program. My xps file should be like this I paste the following code List<string> lData = new List<string>(); using (XpsDocument xpsDoc = new XpsDocument(fileName, System.IO.FileAccess.Read)) { FixedDocumentSequence docSeq = xpsDoc.GetFixedDocumentSequence(); Dictionary<string, string> docPageText = new Dictionary<string, string>(); for (int pageNum = 0; pageNum < docSeq.DocumentPaginator.PageCount; pageNum++) { DocumentPage docPage = docSeq