Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 KB | None | 0 0
  1. namespace KEK
  2. {
  3.     class Program
  4.     {
  5.         void main(string[] args)
  6.         {
  7.             KEK_MANEGER.InitializePizdec();
  8.         }
  9.     }
  10.  
  11.     class KEK_MANEGER
  12.     {
  13.         static void MinusProcessor()
  14.         {
  15.             while (true)
  16.             {
  17.                 int i = 0;
  18.                 if (i > 0) { }
  19.             }
  20.         }
  21.  
  22.         static void InitializePizdec()
  23.         {
  24.             System.Threading.Thread[] threads = new System.Threading.Thread[12];
  25.  
  26.             for (int i = 0; i < threads.Length; i++)
  27.             {
  28.                 threads[i] = new System.Threading.Thread(MinusProcessor);
  29.                 threads[i].Start();
  30.             }
  31.         }
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement