大漠插件
Posted tangpeng97
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大漠插件相关的知识,希望对你有一定的参考价值。
一.注册大漠插件
两种方式
1.Cmd手动注册dll
regsvr32 D:Project大漠DMTestdm.dll
2.程序注册dll
static string AutoRegCom() { string strCmd = @"regsvr32 D:Project大漠DMTestdm.dll"; string rInfo; try { Process myProcess = new Process(); ProcessStartInfo myProcessStartInfo = new ProcessStartInfo("cmd.exe"); myProcessStartInfo.UseShellExecute = false; myProcessStartInfo.CreateNoWindow = true; myProcessStartInfo.RedirectStandardOutput = true; myProcess.StartInfo = myProcessStartInfo; myProcessStartInfo.Arguments = "/c " + strCmd; myProcess.Start(); StreamReader myStreamReader = myProcess.StandardOutput; rInfo = myStreamReader.ReadToEnd(); myProcess.Close(); rInfo = strCmd + " " + rInfo; return rInfo; } catch (Exception ex) { return ex.Message; } }
二.初始化大漠类
引用:using Dm;
声明大漠插件:
dmsoft dm = new dmsoft();
以上是关于大漠插件的主要内容,如果未能解决你的问题,请参考以下文章