本文主要是介绍用一个变量去取名与其值相同的变量的值,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Reflection;
namespace Reflection
{
class Program
{
//此例是通过一个变量去查找与其值名相同的变量的值,如本例:通过strFind可以找到"FindObjectValue";详见2)
private string strFind = "strReflection";
public string strReflection = "FindObjectValue";
public int nReflection = 50;
static void Main(string[] args)
{
Program a = new Program();
a.Test();
Console.ReadKey();
}
private void Test()
{
//1)------用反射取当前运行实例的所有公共字段的信息
//GetType(), Type 实例,表示当前实例的确切运行时类型。
//GetField(),Type.GetFields() 方法返回当前 Type 的所有公共字段。
FieldInfo[] foelds = this.GetType().GetFields(); //返回的是当前实例下的公共字段的信息
foreach (FieldInfo item in foelds)
{
//然后再到当前实例中取得其value,返回值为object
object obj = item.GetValue(this);
//输出取得的值
Console.WriteLine(obj.ToString());
}
//2)------通过特点值取变量名为此值的值,给GetField()指定要取的公共字段名来取得其信息
Console.WriteLine(this.GetType().GetField(strFind).GetValue(this).ToString());
}
}
}
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/Sugar_Tiger/archive/2009/09/07/4527095.aspx
这篇关于用一个变量去取名与其值相同的变量的值的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!