which is the easiest way to change Font size with C#.
with java it can all be done easily by calling Font constructor with necessary arguments.
JLab
Use this one to change only font size not the name of the font
label1.Font = new System.Drawing.Font(label1.Font.Name, 24F);