Let\'s say I\'ve loaded a PDF file using iTextSharp:
PdfStamper p = GetDocument(); AcroFields af = ps.AcroFields;
How do I get a list of al
It may just be me, but I am not getting .Value anymore.
foreach (var field in af.Fields) { Console.WriteLine(field.Key +" "+ af.GetField(field.Key)); }