摘要:
一,动态代理编程 public class Proxy<T> : RealProxy where T : class { MarshalByRefObject myMarshalByRefObject; public Proxy(MarshalByRefObject realT) : base(ty 阅读全文
摘要:
如下是当程序异常的时候,写Dump文件 public static class MiniDump { [DllImport("dbghelp.dll", EntryPoint = "MiniDumpWriteDump", CallingConvention = CallingConvention.S 阅读全文
摘要:
一:控制台应用程序 通过为当前AppDomain添加 UnhandledException 事件处理程序。 AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(UnhandledExcept 阅读全文
摘要:
一,For<TLocal>(Int32 fromInclusive, Int32 toExclusive, Func<TLocal> localInit, Func<Int32, ParallelLoopState, TLocal, TLocal> body, Action<TLocal> loca 阅读全文
摘要:
customErrors Asp.Net级别的错误处理程序,只处理Asp.Net应用抛出的异常(404,403,500。。) 在IIS7+的服务器依然可用(IIS7之前就引进了) 静态文件(如.jpg,.htm,.js等)不会被处理 放在System.Web节点 httpErrors IIS级别的错 阅读全文
摘要:
了解ASP.NET MVC几种ActionResult的本质:EmptyResult & ContentResult 了解ASP.NET MVC几种ActionResult的本质:FileResult 了解ASP.NET MVC几种ActionResult的本质:JavaScriptResult & 阅读全文
摘要:
All():判断所有元素是否都满足条件,若有一个不满足就返回false,否则返回true,源代码如下,如果方法里参数均为null,则会抛出异常。若该对象为null也会抛出异常,若该IEnumbe类型里元素个数为0,则会一直返回true public static bool All(this IEnumerable source, Func predicate) { i... 阅读全文