if (oldfont.Bold)
newfont = 
new Font(oldfont, oldfont.Style & ~FontStyle.Bold);
else
newfont =
new Font(oldfont, oldfont.Style | FontStyle.Bold);
请讲一下括号中的用法。
Font oldfont;