⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex-18-07

📁 Programming Csharp Source Code(代码) Programming Csharp Source Code
💻
字号:
// Example 18-07: Dynamically invoking a method

namespace Programming_CSharp
{
   using System;
   using System.Reflection;

   public class Tester
   {
      public static void Main()
      {
         Type theMathType = Type.GetType("System.Math");
         Object theObj = 
            Activator.CreateInstance(theMathType);

         // array with one member
         Type[] paramTypes = new Type[1];
         paramTypes[0]= Type.GetType("System.Double");

         // Get method info for Cos()
         MethodInfo CosineInfo = 
            theMathType.GetMethod("Cos",paramTypes);

         // fill an array with the actual parameters
         Object[] parameters = new Object[1];
         parameters[0] = 45;
         Object returnVal = 
            CosineInfo.Invoke(theObj,parameters);
         Console.WriteLine(
            "The cosine of a 45 degree angle {0}", 
            returnVal);
 
      }
   }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -