C#反射技術的簡單操作(讀取和設定類的屬性、屬性值)

來源:互聯網
上載者:User

標籤:

 

public class A{    public int Property1 { get; set; }}static void Main(){    A aa = new A();    Type type = aa.GetType();//擷取類型    System.Reflection.PropertyInfo propertyInfo = type.GetProperty("Property1");    propertyInfo.SetValue(aa, 5, null);//給對應屬性賦值    int value = (int)propertyInfo.GetValue(aa, null);    Console.WriteLine(value );}

  

少量屬性的自動化操作手動添加幾下當然是沒有問題的,但是屬性數量較多的時候敲起這些繁鎖的代碼可以困了,再說對擴充和維護性造成很多的不便,這時,就需要使用反射來實現了。

要想對一個類型執行個體的屬性或欄位進行動態賦值或取值,首先得得到這個執行個體或類型的Type,微軟已經為我們提供了足夠多的方法。

首先建立一個測試的類

public class MyClass {     public int one { set; get; }     public int two { set; get; }     public int five { set; get; }     public int three { set; get; }     public int four { set; get; } } 

  然後編寫反射該類的代碼

MyClass obj = new MyClass(); Type t = typeof(MyClass); //迴圈賦值 int i = 0; foreach (var item in t.GetProperties()) {     item.SetValue(obj, i, null);     i += 1; } //單獨賦值 t.GetProperty("five").SetValue(obj, 11111111, null); //迴圈擷取 StringBuilder sb = new StringBuilder(); foreach (var item in t.GetProperties()) {     sb.Append("類型:" + item.PropertyType.FullName + " 屬性名稱:" + item.Name + " 值:" + item.GetValue(obj, null) + "<br />"); } //單獨取值 int five = Convert.ToInt32(t.GetProperty("five").GetValue(obj, null)); sb.Append("單獨取five的值:" + five); string result = sb.ToString(); Response.Write(result); 

  

測試顯示結果: 
類型:System.Int32 屬性名稱:one 值:0 
類型:System.Int32 屬性名稱:two 值:1 
類型:System.Int32 屬性名稱:five 值:11111111 
類型:System.Int32 屬性名稱:three 值:3 
類型:System.Int32 屬性名稱:four 值:4 
單獨取five的值:11111111

瞭解了類的屬性反射使用後,那麼方法也是可以這樣做的,即t.GetProperties()改為t.GetMethods(),操作方法同上。
 

註:以上代碼中如不能直接使用請添加using System.Text;的引用。

C#反射技術的簡單操作(讀取和設定類的屬性、屬性值)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.