This chapter is from the book
Q&A
What if I need to draw a lot of lines, one starting where another ends? Do I need to call DrawLine() for each line?
The Graphics object has a method called DrawLines(), which accepts a series of points. The method draws lines connecting the sequence of points.
Is there a way to fill a shape?
The Graphics object includes methods that draw filled shapes, such as FillEllipse() and FillRectangle().