Witam
Czy mógłby mi ktoś sensownie przetłumaczyć co dzieje się w tych dwóch kolejnych etapach:
Step 1:
Creates an instance of the iTextSharp.text.Document-object:
Document document = new Document(Page.Size.A4);
Step 2:
Creates a Writer that listens to this document and writes the document to the Stream of your choice:
PdfWriter.getInstance(document, new FileStream("Chap0101.pdf", FileMode.Create))
Rozumiem, że w step1 tworzymy obiekt "document" o jakiś tam parametrach.
Jednak mam problem jak dobrze przetłumaczyć ten krok2 - nie napiszę, że tworzymy "Pisarza" :-).