• 反射的一种用法


    using System; 
    using System.Reflection; 
    using System.Globalization; 
     
    public class MyClass 

        
    private string myString; 
        
    public MyClass() 
        { 
            myString 
    = "Old value"
        } 
        
    string GetField 
        { 
            
    get 
            { 
                
    return myString; 
            } 
        } 

     
    public class FieldInfo_SetValue 

        
    public static void Main() 
        { 
            
    try 
            { 
                MyClass myObject 
    = new MyClass(); 
                Type myType 
    = Type.GetType("MyClass"); 
                 FieldInfo myFieldInfo 
    = myType.GetField("myString", BindingFlags.NonPublic | BindingFlags.Instance);  
                
    // Display the string before applying SetValue to the field. 
                Console.WriteLine( " The field value of myString is {0}.", myFieldInfo.GetValue(myObject));  
                
    // Display the SetValue signature used to set the value of a field. 
                Console.WriteLine( "Applying SetValue(Object, Object).");     
                
    // Change the field value using the SetValue method.  
                myFieldInfo.SetValue(myObject, "New value");  
                
    // Display the string after applying SetValue to the field. 
                Console.WriteLine( "The field value of mystring is {0}.", myFieldInfo.GetValue(myObject)); 
                
    // Set the field value to its old value.  
                myFieldInfo.SetValue( myObject , "Old value" );  
                myFieldInfo 
    = myType.GetField("myString", BindingFlags.NonPublic | BindingFlags.Instance);  
                
    // Display the string before applying SetValue to the field. 
                Console.Write( " The field value of mystring is {0}. ", myFieldInfo.GetValue(myObject));  
                
    // Display the SetValue signature used to set the value of a field. 
                Console.WriteLine("Applying SetValue(Object, Object, BindingFlags, Binder, CultureInfo).");  
                
    // Change the field value using the SetValue method.  
                myFieldInfo.SetValue(myObject, "New value", BindingFlags.Public, nullnull);      
                
    // Display the string after applying SetValue to the field. 
                Console.WriteLine( "The field value of mystring is {0}.", myFieldInfo.GetValue(myObject)); 
            } 
            
    catch( Exception e ) 
            { 
                
    // Any exception generated is displayed.  
                Console.WriteLine( "Exception: {0}", e.Message ); 
            } 
        } 

     

    ===============================
    http://kb.cnblogs.com/page/42051/

    http://kb.cnblogs.com/page/42279/

  • 相关阅读:
    浏览器—CORS 通信的学习总结
    前端算法
    移动端适配时对meta name="viewport" content="width=device-width,initial-scale=1.0"的理解
    react和vue的区别
    对xss攻击和csrf攻击的理解
    前端如何解决跨域
    你没那么重要
    五福
    天道
    决策
  • 原文地址:https://www.cnblogs.com/simhare/p/1520867.html
Copyright © 2020-2023  润新知