错误信息:未能加载文件或程序集……或它的某一个依赖项。参数不正确。 (异常来自 HRESULT:0x80070057 (E_INVALIDARG))English:Could not load file or assembly … The parameter is incorrect … HRESU...
分类:
其他好文 时间:
2014-09-23 13:01:24
阅读次数:
227
【MonoDevelop Assembly Browser】 View -> Assembly Browser,通过此窗口可以查看Dll的反编译后的代码。 还有几款免费的替代产品可以使用, 虽然不及 .Net Reflector 成熟, 但是已经可以使用了, 它们是:dotPeekJetBr...
分类:
其他好文 时间:
2014-09-20 17:06:49
阅读次数:
207
C#重启窗体代码 System.Diagnostics.Process.Start(System.Reflection.Assembly.GetExecutingAssembly().Location); notifyIcon1.Visible = false;...
分类:
其他好文 时间:
2014-09-20 14:04:17
阅读次数:
161
namespace 反射{ class Program { static void Main(string[] args) { Assembly ass= Assembly.Load(@"反射");//找到程序集 v...
分类:
其他好文 时间:
2014-09-18 16:20:54
阅读次数:
111
Problem: Assembly generation failed -- Referenced assembly '' does not have a strong nameCause: this is due to you have referenced a third-party dll w...
分类:
其他好文 时间:
2014-09-18 16:05:34
阅读次数:
264
编译的时候报错,都无法通过编译:Assembly 'Microsoft.Office.Interop.Excel, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' uses 'Microsoft.Vbe.Inte...
分类:
其他好文 时间:
2014-09-16 23:41:51
阅读次数:
359
Powershell配置SharePoint环境1. 设置outgoing email:1) Powershell:$loadasm =[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")$SPGlobal...
分类:
其他好文 时间:
2014-09-14 21:57:57
阅读次数:
198
全局程序集缓存(GAC:Global Assembly Cache)用来存放可能被多次使用的强名称程序集。当主程序需要加载程序集的时候,优先选择到全局程序集缓存中去找寻需要的程序集。 为什么需要全局程序集缓存?假设程序A引用B程序集,程序C也引用B程序集,在这种情况下,可以把B程序集放到一个全局程序...
分类:
其他好文 时间:
2014-09-14 15:20:57
阅读次数:
307
搜索....
Machine
Time Limit: 2 Seconds Memory Limit: 65536 KB
In a typical assembly line, machines are connected one by one. The first machine's output product will be the second mac...
分类:
其他好文 时间:
2014-09-11 20:59:42
阅读次数:
186
C# 在运行时动态的创建类型,这里是通过动态生成C#源代码,然后通过编译器编译成程序集的方式实现动态创建类型 public static Assembly NewAssembly() { //创建编译器实例。 provider = new CSharpCodeProvider(); //设置编译参....
分类:
其他好文 时间:
2014-09-10 17:09:10
阅读次数:
178