good thing about the using statement code example
Example: using in c#
//doing with using function
using (var font1 = new Font("Arial", 10.0f))
{
byte charset = font1.GdiCharSet;
}
//or
using var font1 = new Font("Arial", 10.0f);
byte charset = font1.GdiCharSet;