本文介绍了从字符串名称返回fontstyle的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想写这将返回fontstyle的,采取的字符串作为参数

I want to write a function which will return FontStyle and take string as Parameter

FontStyle f = function ("Italic"); // FontStyles.Italic



我不想写开关的情况下,或者如果else语句做一样的。

I don't want to write Switch case or if else statements to do the same.

是否可以为不区分大小写字符串做了什么?

Can it be done for case insensitive strings?

FontStyle f = function ("italic");
FontStyle f = function ("itAlic"); 



应返回相同的。

should return same.

推荐答案

您可以使用反射为此:

var propertyInfo = typeof(FontStyles).GetProperty("Italic",
                                                  BindingFlags.Static |
                                                  BindingFlags.Public |
                                                  BindingFlags.IgnoreCase);
FontStyle f = (FontStyle)propertyInfo.GetValue(null, null);

这篇关于从字符串名称返回fontstyle的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 02:39