FileStream fs = new FileStream(pdffile, FileMode.Open, FileAccess.Read);
Int32 fsLen = (Int32)fs.Length;
Byte[] fsByte = new Byte[fsLen];
fs.Read(fsByte, 0, fsLen);this.richTextBox1.Text = System.Text.ASCIIEncoding.ASCII.GetString(fsByte);