编程之美 C#实现 1

适用于1.8GHZ左右的CPU 50%占用率

//C# code

 class ManageCpu {   static  void Main(string[] a)     {         int st = 0;         while (true)         {             st = System.Environment.TickCount;

            while (System.Environment.TickCount – st <90)             { }

            System.Threading.Thread.Sleep(90);         }                     }     }

 

    原文作者:崔鹏飞
    原文地址: https://blog.csdn.net/cuipengfei1/article/details/2603668
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞