标签:
internal class BaseItemVO { public string name; public string lockA; }
public static void setValue(Object tar, String name, Object value) { FieldInfo fInfo = tar.GetType().GetField(name); Type type = fInfo.FieldType; if (type==typeof(String)) { //这里可以VO中获取字段的类型 Console.WriteLine("this is a string"); } fInfo.SetValue(tar, value); //设置VO中的字段的值 }
代码虽然一点点,在读取xml配置的时候非常有用,简单记录一下。
标签:
原文地址:http://www.cnblogs.com/master-image/p/4567856.html