Exemplo n.º 1
0
 protected void OutputInfoEntry(string name, DateTime value, PDFWriter writer)
 {
     if (value > DateTime.MinValue)
     {
         writer.BeginDictionaryEntry(name);
         writer.WriteDate(value);
         writer.EndDictionaryEntry();
     }
 }