Hi, I need send to the printer a simple line and a bold line in C#. Why is so complicate?

It's so simple in VB:
VB Code:
  1. Printer.FontBold = False
  2. Printer.Print "Normal line"
  3. Printer.FontBold = True
  4. Printer.Print "Bold line"


How can I do the same thing in C#?
Can you give me an example on how to do this, pls?