Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/280.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用C#注册BHO?我想作为类型发送的参数是什么? 使用系统; 使用System.Collections.Generic; 使用System.Linq; 使用System.Threading.Tasks; 使用System.Windows.Forms; 使用BHO_HelloWorld; 使用SHDocVw; 命名空间Windows窗体应用程序1 { 静态类程序 { /// ///应用程序的主要入口点。 /// [状态线程] 静态void Main() { BHO.RegisterBHO(Type);///该调用的类型是什么? } } }_C#_Dll_Bho - Fatal编程技术网

如何使用C#注册BHO?我想作为类型发送的参数是什么? 使用系统; 使用System.Collections.Generic; 使用System.Linq; 使用System.Threading.Tasks; 使用System.Windows.Forms; 使用BHO_HelloWorld; 使用SHDocVw; 命名空间Windows窗体应用程序1 { 静态类程序 { /// ///应用程序的主要入口点。 /// [状态线程] 静态void Main() { BHO.RegisterBHO(Type);///该调用的类型是什么? } } }

如何使用C#注册BHO?我想作为类型发送的参数是什么? 使用系统; 使用System.Collections.Generic; 使用System.Linq; 使用System.Threading.Tasks; 使用System.Windows.Forms; 使用BHO_HelloWorld; 使用SHDocVw; 命名空间Windows窗体应用程序1 { 静态类程序 { /// ///应用程序的主要入口点。 /// [状态线程] 静态void Main() { BHO.RegisterBHO(Type);///该调用的类型是什么? } } },c#,dll,bho,C#,Dll,Bho,我正在调用BHO.RegisterBHO函数来注册BHO。但是这个调用的参数是什么?什么是类型对象 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; using BHO_HelloWorld; using SHDocVw; namespac

我正在调用
BHO.RegisterBHO
函数来注册BHO。但是这个调用的参数是什么?什么是
类型
对象

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using BHO_HelloWorld;
    using SHDocVw;
  namespace WindowsFormsApplication1
  {
     static class Program
     {
       /// <summary>
       /// The main entry point for the application.
       /// </summary>
       [STAThread]
       static void Main()
       {
            BHO.RegisterBHO(Type);///What is type for that calling?
       }
    }
 }