I want to take a list of objects and create that into a table and display that into a pdf file. Is there any good libraries out there that I can use?
MyObject a = new MyObject();
a.Name = "bob";
a.Address = "123 fake st";
pdf output
Name Address
bob 123 fake st
jim test
I looked at pdfsharp/migradoc but it does not seem to work on medium trust so I am not sure if it will work on my shared hosting.
I heard of itextsharp but did not really look into it as they seemed to have changed their licensing and the new licensing forces you to make your project open I believe.