c#有没有varianttype
2个回答
2015-12-29 · 知道合伙人互联网行家
关注
展开全部
1. t是Type的对象。Type是抽象类,不过用typeof,gettype等方法获得的是System.RuntimeType类型,该类型继承了Type抽象类。
2. FontStyle
public enum FontStyle
{
Bold = 1,
Italic = 2,
Regular = 0,
Strikeout = 8,
Underline = 4
}
FontStyle.Bold & FontStyle.Regular = 1&0 = 0 = FontStyle.Regular
FontStyle.Bold | FontStyle.Regular = 1|0 = 1 = FontStyle.Bold
2. FontStyle
public enum FontStyle
{
Bold = 1,
Italic = 2,
Regular = 0,
Strikeout = 8,
Underline = 4
}
FontStyle.Bold & FontStyle.Regular = 1&0 = 0 = FontStyle.Regular
FontStyle.Bold | FontStyle.Regular = 1|0 = 1 = FontStyle.Bold
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询