以下是本人学习反射时做的几个小例子.感觉反射的功能真的很强大!
People.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Foo
{
public class People
{
public string Name = "jiang";
public People()
{
}
public People(string _Name)
{
Name = _Name;
}
public string Go(string j)
{
return j;
}
}
}
反射例子的cs类
using System;
using System.Web;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
namespace ConsoleApplication1
{
class Reflection_Go_T
{
static void Main(string[] args)
{
//Assembly A = Assembly.Load("Foo");
//Type type = A.GetType("foo.people",false,true);
//object T = Activator.CreateInstance(type,"我是小江");
//Foo.People P = (Foo.People)T;
//Console.WriteLine(P.Name);
//Assembly A = Assembly.Load("Foo");
//Type type = A.GetType("Foo.People", false, true);
//object t = Activator.CreateInstance(type, "你是谁啊");
//Foo.People P = (Foo.People)t;
//Console.WriteLine(P.Name);
//Assembly assemble = Assembly.Load("Foo");
//Type type = assemble.GetType("Foo.People");
//ConstructorInfo info = type.GetConstructor(new Type[0]);
//object obj = info.Invoke(new object[0]);
//Foo.People P = (Foo.People)obj;
//Console.WriteLine(P.Name);
object obj = AppDomain.CurrentDomain.CreateInstanceAndUnwrap("Foo", "Foo.People");
Type type = obj.GetType();
Object[] parms = new object[1];
parms[0] = "我是不啊";
string result = (string)type.InvokeMember("Go",
BindingFlags.InvokeMethod,
null,
obj, parms);
Console.WriteLine(result);
}
}
public class TC
{
}
}