从代码注册dll时出错

从代码注册dll时出错

本文介绍了从代码注册dll时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好
我想从代码中注册dll..
所以形成给定的链接,我复制了代码并尝试了

http://www.zorched.net/2009 /01/01/register-and-unregister-com-dll-from-net-code/ [ ^ ]

但它给出错误为

hi all
i wanted to register dll from code..
so form the given link i copied the code and tried it

http://www.zorched.net/2009/01/01/register-and-unregister-com-dll-from-net-code/[^]

but it is giving error as

The specified procedure could not be found



在此行



at this line

IntPtr dllEntryPoint = GetProcAddress(hLib, methodName);
            if (IntPtr.Zero == dllEntryPoint)
            {
               error=> throw new Win32Exception(Marshal.GetLastWin32Error());
            }
            PointerToMethodInvoker drs =
                   (PointerToMethodInvoker) Marshal.GetDelegateForFunctionPointer(dllEntryPoint,
                               typeof(PointerToMethodInvoker));
            drs();



有帮助吗?
谢谢

上帝保佑大家all



any Help??
thank you

god bless u all

推荐答案


这篇关于从代码注册dll时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 04:49