首先訪問一個類的私有成員不是什麼好做法。大家都知道私有成員在外部是不能被訪問的。一個類中會存在很多私有成員:如私有字段、私有屬性、私有方法。對於私有成員造訪,可以套用下面這種非常好的方式去解決。
- private string name;
- public string Name
- {
- get
- {
- return name;
- }
- set
- {
- name = value;
- }
- }
但是有時候,源代碼是別人的,只提供給你dll。或者你去維護別人的代碼,源代碼卻有丟失。這樣的情況或許你想知道私有成員的值,甚至去想直接調用類裡面的私有方法。那怎麼辦呢?在.net中訪問私有成員不是很難,這篇文章提供幾個簡單的方法讓你如願以償。
為了讓代碼用起來優雅,使用擴展方法去實現。
1、得到私有字段的值:
- public static T GetPrivateField<T>(this object instance, string fieldname)
- {
- BindingFlags flag = BindingFlags.Instance | BindingFlags.NonPublic;
- Type type = instance.GetType();
- FieldInfo field = type.GetField(fieldname, flag);
- return (T)field.GetValue(instance);
- }
2、得到私有屬性的值:
- public static T GetPrivateProperty<T>(this object instance, string propertyname)
- {
- BindingFlags flag = BindingFlags.Instance | BindingFlags.NonPublic;
- Type type = instance.GetType();
- PropertyInfo field = type.GetProperty(propertyname, flag);
- return (T)field.GetValue(instance, null);
- }
3、設置私有成員的值:
- public static void SetPrivateField(this objectinstance, stringfieldname, objectvalue)
- {
- BindingFlagsflag = BindingFlags.Instance | BindingFlags.NonPublic;
- Typetype = instance.GetType();
- FieldInfofield = type.GetField(fieldname, flag);
- field.SetValue(instance, value);
- }
4、設置私有屬性的值:
- public static void SetPrivateProperty(this objectinstance, stringpropertyname, objectvalue)
- {
- BindingFlagsflag = BindingFlags.Instance | BindingFlags.NonPublic;
- Typetype = instance.GetType();
- PropertyInfofield = type.GetProperty(propertyname, flag);
- field.SetValue(instance, value, null