Advertisement
T-D-K

Untitled

Dec 23rd, 2018
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.80 KB | None | 0 0
  1.     public class Benchmark {
  2.         Random rnd = new Random();
  3.  
  4.         [Benchmark]
  5.         public int CustomFunction1() {
  6.             int sum = 0;
  7.             for (int i = 0; i < GetCustomValue(); i++) {
  8.                 sum += i;
  9.             }
  10.             return sum;
  11.         }
  12.  
  13.         [Benchmark]
  14.         public int CustomFunction2() {
  15.             int sum = 0;
  16.             for (int i = 0; i < GetCustomValue(i); i++) {
  17.                 sum += i;
  18.             }
  19.             return sum;
  20.         }
  21.  
  22.         [MethodImpl(MethodImplOptions.NoInlining)]
  23.         int GetCustomValue(int i) {
  24.             int a = rnd.Next(i);
  25.             return a > 1000 ? 100 : 10;
  26.         }
  27.  
  28.  
  29.         int GetCustomValue() {
  30.             int a = rnd.Next(100);
  31.             return a > 1000 ? 100 : 10;
  32.         }
  33.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement