C# 反射

// 获取变量
using  System;
using  System.Reflection;

class  MyClass
{
    
private int myProperty;
    
// Declare MyProperty.
    public int MyProperty
    
{
        
get
        
{
            
return myProperty;
        }

        
set
        
{
            myProperty
=value;
        }

    }

}

public   class  MyTypeClass
{
    
public static void Main(string[] args)
    
{
        
try
        
{
            
// Get the Type object corresponding to MyClass.
            Type myType=typeof(MyClass);       
            
// Get the PropertyInfo object by passing the property name.
            PropertyInfo myPropInfo = myType.GetProperty("MyProperty");
            
// Display the property name.
            Console.WriteLine("The {0} property exists in MyClass.", myPropInfo.Name);
        }

        
catch(NullReferenceException e)
        
{
            Console.WriteLine(
"The property does not exist in MyClass." + e.Message);
        }

    }

}

 //获取所有变量

 

class  MyClass
{
   
public int myInt = 0;
   
public string myString = null;

   
public MyClass()
   
{
   }

   
public void Myfunction()
   
{
   }

}


class  Type_GetMembers
{
   
public static void Main()
   
{
      
try
      
{
         MyClass myObject 
= new MyClass();
         MemberInfo[] myMemberInfo; 

         
// Get the type of 'MyClass'.
         Type myType = myObject.GetType(); 
        
         
// Get the information related to all public member's of 'MyClass'. 
         myMemberInfo = myType.GetMembers();
    
         Console.WriteLine( 
" The members of class '{0}' are : ", myType); 
         
for (int i =0 ; i < myMemberInfo.Length ; i++)
         
{
            
// Display name and type of the concerned member.
            Console.WriteLine( "'{0}' is a {1}", myMemberInfo[i].Name, myMemberInfo[i].MemberType);
         }

      }

      
catch(SecurityException e)
      
{
         Console.WriteLine(
"Exception : " + e.Message ); 
      }

   }

}

c#用反射获取类型,然后动态的生成变量
   现在我们要获取 ProjectDataDetail myDataDetail 下面的一个属性 D01_01
   即:projectDataDetail.D01_01的值,我们需要在循环中动态建造D01_01属性

1、获取单个的属性:
  Type myType = myDataDetail.GetType();
  System.Reflection.PropertyInfo myPI = myType.GetProperty("D01_01") ;
  string myValue = myPI.GetValue(myDataDetail,null).ToString() ;

2、可以获取属性组:
                System.Reflection.PropertyInfo [] myPIs = myType.GetProperties () ;

 

using  System;
using  System.Reflection;
 
//  Define a class with a property.
public   class  TestClass   
{
    
private string caption = "A Default caption";
    
public string Caption
    
{
        
get return caption; }
        
set 
        

            
if (caption != value) 
            
{
                caption 
= value;
            }

        }

    }

}

 
class  TestPropertyInfo
{
    
public static void Main()
    
{
        TestClass t 
= new TestClass();
 
        
// Get the type and PropertyInfo.
        Type myType = t.GetType();
        PropertyInfo pinfo 
= myType.GetProperty("Caption");
 
        
// Display the property value, using the GetValue method.
        Console.WriteLine(" GetValue: " + pinfo.GetValue(t, null));
 
        
// Use the SetValue method to change the caption.
        pinfo.SetValue(t, "This caption has been changed."null);
 
        
//  Display the caption again.
        Console.WriteLine("GetValue: " + pinfo.GetValue(t, null));

        Console.WriteLine(
" Press the Enter key to continue.");
        Console.ReadLine();
    }

}


/*
This example produces the following output:
 
GetValue: A Default caption
GetValue: This caption has been changed

Press the Enter key to continue.
*/
C# 反射是指在运行时动态地获取类的信息,通过反射可以获取类的属性、方法、事件等信息,以及动态创建对象、调用方法、获取值等操作。这使得我们能够在运行时动态地编写代码,可以写出更加灵活和可扩展的程序。 C# 反射的核心是 `System.Reflection` 命名空间,该命名空间包含了许多与反射相关的类和接口,比如 `Type` 类、`MethodInfo` 类、`PropertyInfo` 类等。 下面是一些常用的反射操作: 1. 获取类型信息 可以使用 `typeof` 关键字或者 `Type.GetType()` 方法来获取类型的信息。`typeof` 关键字用于获取编译时已知的类型信息,而 `Type.GetType()` 方法则可以通过类型名称获取运行时的类型信息。 ```csharp // 获取 System.String 类型的信息 Type type1 = typeof(System.String); // 获取指定类型名称的信息 Type type2 = Type.GetType("System.String"); ``` 2. 获取成员信息 可以使用 `Type.GetMembers()` 方法获取类型的所有成员信息,包括属性、方法、字段、事件等。也可以使用 `Type.GetMethod()`、`Type.GetProperty()`、`Type.GetField()`、`Type.GetEvent()` 等方法获取指定成员的信息。 ```csharp Type type = typeof(Person); // 获取类型的所有成员信息 MemberInfo[] members = type.GetMembers(); // 获取指定属性的信息 PropertyInfo property = type.GetProperty("Name"); // 获取指定方法的信息 MethodInfo method = type.GetMethod("SayHello"); // 获取指定字段的信息 FieldInfo field = type.GetField("Age"); // 获取指定事件的信息 EventInfo eventInfo = type.GetEvent("PropertyChanged"); ``` 3. 动态创建对象 可以使用 `Activator.CreateInstance()` 方法动态创建对象,也可以使用 `Type.InvokeMember()` 方法调用构造函数来创建对象。 ```csharp Type type = typeof(Person); // 使用 Activator.CreateInstance() 方法创建对象 Person person1 = (Person)Activator.CreateInstance(type); // 使用 Type.InvokeMember() 方法调用构造函数创建对象 Person person2 = (Person)type.InvokeMember(null, BindingFlags.CreateInstance, null, null, new object[] { "Tom", 18 }); ``` 4. 调用成员 可以使用 `MethodInfo.Invoke()` 方法调用方法,也可以使用 `PropertyInfo.SetValue()` 方法设置属性的值,使用 `FieldInfo.SetValue()` 方法设置字段的值。 ```csharp Type type = typeof(Person); Person person = new Person("Tom", 18); // 调用方法 MethodInfo method = type.GetMethod("SayHello"); method.Invoke(person, null); // 设置属性的值 PropertyInfo property = type.GetProperty("Name"); property.SetValue(person, "Jerry", null); // 设置字段的值 FieldInfo field = type.GetField("Age"); field.SetValue(person, 20); ``` 以上是 C# 反射的一些基本操作,反射的应用非常广泛,可以用来实现插件式开发、ORM 映射等功能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值