I have this code:

PHP Code:
            System.Drawing.Graphics lol;
            
lol this.CreateGraphics();

            
Font font = new Font("Verdana"10FontStyle.Bold);

            
lol.DrawString("oiiabcd"fontBrushes.Red0,0);

            
SizeF size lol.MeasureString("HI"font);

            
lol.DrawLine(new Pen(Color.Red), 0100size.Width100); 
i realised that the font that i choose is not being put in there..if i change the font it just shows me the same font 4ever...what i am doin wrong?