类似于 C++ 中的 C# 方法指针

C# method pointer like in C++

在 C++ 中,我可以在不知道将在哪个实例上调用它的情况下创建我的方法指针,但在 C# 中我不能这样做 - 我需要委托创建时的实例。

这就是我要找的东西:

这是来自MSDN

的代码
using System;
using System.Windows.Forms;

public class Name
{
   private string instanceName;

   public Name(string name)
   {
      this.instanceName = name;
   }

   public void DisplayToConsole()
   {
      Console.WriteLine(this.instanceName);
   }

   public void DisplayToWindow()
   {
      MessageBox.Show(this.instanceName);
   }
}

public class testTestDelegate
{
   public static void Main()
   {
      Name testName = new Name("Koani");
      Action showMethod = testName.DisplayToWindow;
      showMethod();
   }
}

但我想这样做:

public class testTestDelegate
{
    public static void Main()
    {
        Name testName = new Name("Koani");
        Action showMethod = Name.DisplayToWindow;
        testName.showMethod();
    }
}

您可以创建一个将您的实例作为参数的委托:

Name testName = new Name("Koani");
Action<Name> showMethod = name => name.DisplayToWindow();
showMethod(testName);