One way is to interop it with msvcrt.dll You can pinvoke this C function into your C# application. This process is very easy. There are a few steps: 1) Insert System.Runtime.InteropServices to your using clauses. 2) Insert this line in your class (us…
反射用于在程序运行过程中,获取类里面的信息或发现程序集并运行的一个过程.通过反射可以获得.dll和.exe后缀的程序集里面的信息.使用反射可以看到一个程序集内部的类,接口,字段,属性,方法,特性等信息. 一.各种GetType().typeof的区别 首先就是获取Tyoe对象的来源不同: class Program { static void Main(string[] args) { Type t1 = Type.GetType("ConsoleApplication2.Person"…