摘要:
一、.NET中支持的类型参数约束有以下几种 where T : struct T必须是一个结构类型where T : class T必须是一个类(class)类型,不能是结构(structure)类型where T : new() T必须要有一个无参构造函数where T : NameOfBaseC 阅读全文
摘要:
在解决已有代码的一个问题时,有一个try catch块,基本代码如下: try { //do something } catch { LogHelper.Debug(typeof(myHelper), string.Format("Could not find country code for IP 阅读全文
摘要:
在Umbraco平台开发一个系统时,遇到一个问题,报错500 server error, system is currently unable to handle this request. 按下F12键,查看发现是报 URL Rewrite module error 在该系统目录下,确实有一个30 阅读全文
摘要:
Open the windows Run dialog (Windows Key + r) Type C:\Windows\assembly\gac_msil. This is some sort of weird hack that lets you browse your GAC. You ca 阅读全文
摘要:
最近在使用公司VS2010开发的老的项目时,发现一些问题 公司用VS2010开发了一个项目,生成 GUS_TestIdentity.dll, 放在 C:\Windows\assembly 中 当在另一个项目中使用这个dll时,Vb.net 中是这样写的: Dim myObj As New Test. 阅读全文