在c#中阅读和处理pdf文件的最快方法

时间:2014-03-13 11:14:13

标签: c#-4.0 pdf readfile binaryreader

我正在使用BinaryReader..as

将pdf文件读入字节数组
byte[] filecontent ;
BinaryReader binReader = new BinaryReader(File.Open(FileName, FileMode.Open, FileAccess.Read));
binReader.BaseStream.Position = 0;
filecontent = binReader.ReadBytes(Convert.ToInt32(binReader.BaseStream.Length));
binReader.Close();

有没有其他方法,更快更可靠?

0 个答案:

没有答案