问题如题。
例如:
  public class DemoForm : Form
  {
     public int Value
     { get; set;}
  }  class program
  {
    public static void ShowForm(FormClass AFormClass)  // 问题1 如何定义 FormClass
    {
      Form AForm = new AFormClass();
      AForm.Show();
    }
    static void Main()
    {
      ShowForm(DemoForm);
    }
  }