this might be a silly question :-) but just for reference asking that
System.Drawing.Graphics is a reference type ? or value type ?
I mean when creating objects like this
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
Dim i As Integer = 10
Dim g As Graphics = Graphics.FromHwnd(Me.Handle)
g.DrawString(i, New Font("Arial", 20.0F), Brushes.Blue, New PointF(0, 0))
End Sub
is g a reference type varable ?
I HOPE IT IS YES ?