zoukankan      html  css  js  c++  java
  • Utils

    Mix two hash code to produce a new hash code
    Code

    消影:
    消影

    忘记加的WM_SETREDRAW值了:
     public const int  WM_SETREDRAW                    = 0x000B;

    抓起Dump文件:

    Code

    详细可见:如何让程序抓到dump文件,MiniDumpWriteDump 一文

    Timer (摘自 《CLR Via C#》) 

    Timer
     // This class is useful for doing operation performance timing
     internal sealed class OperationTimer : IDisposable
     {
         
    private Int64 m_startTime;
         
    private String m_text;
         
    private Int32 m_collectionCount;
         
    public OperationTimer(String text)
         {
             PrepareForOperation();
             m_text 
    = text;
             m_collectionCount 
    = GC.CollectionCount(0);
             
    // This should be the last statement in this
             
    // method to keep timing as accurate as possible
             m_startTime = Stopwatch.GetTimestamp();
         }
         
    public void Dispose()
         {
             Console.WriteLine(
    "{0,6:###.00} seconds (GCs={1,3}) {2}", (Stopwatch.GetTimestamp() - m_startTime) / (Double)Stopwatch.Frequency,
                                                                        GC.CollectionCount(
    0- m_collectionCount, m_text);
         }
         
    private static void PrepareForOperation()
         {
             GC.Collect();
             GC.WaitForPendingFinalizers();
             GC.Collect();
         }
     }
  • 相关阅读:
    静态页面设置缓存、动态页面设缓存
    未能加载文件或程序集“WebGrease, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35”或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)
    CS0016: 未能写入输出文件“c:WindowsMicrosoft.NETFrameworkv4.0.30319Temporary ASP.NET Files
    asp.net mvc 重定向
    win8 应用商店。 app下载的音乐和视频软件能打开,不能正常播放 解决方法
    JS 阻止事件冒泡
    ASP.NET MVC4空MVC项目添加脚本压缩和合并
    TabHost说明
    colors.xml
    MMU (一)
  • 原文地址:https://www.cnblogs.com/anders06/p/965352.html
Copyright © 2011-2022 走看看