I am writing an application in MVC4.
I have a physical pdf file on the server. I want to convert this to a memory stream and send it back to the user like this:
return File(stream, "application/pdf", "myPDF.pdf");
But how do I convert a pdf file to a memory stream?
Thanks!