C#中如何将string转换成枚举型

2025-01-05 12:53:22
推荐回答(1个)
回答1:

string aa = "Bold";

MessageBox.Show(System.Enum.Parse(typeof(FontStyle),aa));