首先訪問一個類的私有成員不是什麼好做法。大家都知道私有成員在外部是不能被訪問的。一個類中會存在很多私有成員:如私有字段、私有屬性、私有方法。對於私有成員造訪,可以套用下面這種非常好的方式去解決。
- 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);
- }
5、調用私有方法:
- public static T CallPrivateMethod<T>(this object instance, string name, params object[] param)
- {
- BindingFlags flag = BindingFlags.Instance | BindingFlags.NonPublic;
- Type type = instance.GetType();
- MethodInfo method = type.GetMethod(name, flag);
- return (T)method.Invoke(instance, param);
- }
測試:
下面我們使用一個測試類,進行測試。新建一個類庫項目,測試的類代碼如下:
- public class TestClass
- {
- public TestClass()
- {
- privatefIEld1 = 1;
- privatefIEld2 = 99;
- PrivateFIEldA = "Lo";
- PrivateFIEldB = "ve";
- }
- private int privatefIEld1;
- private int privatefIEld2;
- private string PrivateFIEldA
- {
- get;
- set;
- }
- private string PrivateFIEldB
- {
- get;
- set;
- }
- private int Add()
- {
- return privatefield1 + privatefIEld2;
- }
- private string Join()
- {
- return PrivateFieldA + PrivateFIEldB;
- }
- }
將上面類庫的dll引入控制台項目中。使用下面代碼去使用這個類的私有成員:
- TestClass obj = new TestClass();
- System.Console.WriteLine("私有字段");
- System.Console.WriteLine(obj.GetPrivateFIEld<int>("privatefIEld1"));
- System.Console.WriteLine(obj.GetPrivateFIEld<int>("privatefIEld2"));
- System.Console.WriteLine("私有屬性");
- System.Console.WriteLine(obj.GetPrivateProperty<string>("PrivateFIEldA"));
- System.Console.WriteLine(obj.GetPrivateProperty<string>("PrivateFIEldB"));
- System.Console.WriteLine("私有方法");
- System.Console.WriteLine(obj.CallPrivateMethod<int>("Add",null));
- System.Console.WriteLine(obj.CallPrivateMethod<string>("Join", null));
- System.Console.WriteLine("修改私有屬性");
- obj.SetPrivateProperty("PrivateFIEldA", "hello");
- obj.SetPrivateProperty("PrivateFIEldB", "world");
- System.Console.WriteLine(obj.CallPrivateMethod<string>("Join", null));
- System.Console.Read();
結果如下:
總結:實現對類私有成員的訪問。
原文標題:C#中訪問私有成員
鏈接:http://www.cnblogs.com/zhuqil/archive/2010/07/25/Access-Private-Member.Html
【編輯推薦】