标签: c# fonts type-conversion
我正在使用这种方法将字符串转换为字体:
var converter = TypeDescriptor.GetConverter(typeof(Font)); return (Font) converter.ConvertFromInvariantString(textValue);
我希望如果textValue是一个无效的字体会引发异常,但它似乎只返回一个默认字体。如何确定字符串是否确实是有效字体?