Exemple #1
0
 /// <summary>
 /// Writes the specified value to the PDF stream.
 /// </summary>
 public void Write(PdfUInteger value)
 {
   WriteSeparator(CharCat.Character);
   this.lastCat = CharCat.Character;
   WriteRaw(value.Value.ToString(CultureInfo.InvariantCulture));
 }
Exemple #2
0
 /// <summary>
 /// Writes the specified value to the PDF stream.
 /// </summary>
 public void Write(PdfUInteger value)
 {
   WriteSeparator(CharCat.Character);
   this.lastCat = CharCat.Character;
   WriteRaw(value.Value.ToString());
 }