Advertisement
tolikpunkoff

IncArray

Mar 17th, 2018
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.77 KB | None | 0 0
  1. class IncArray
  2.     {
  3.         private byte[] Arr = null;
  4.         private int Length;
  5.  
  6.         public IncArray(int lengthArr)
  7.         {
  8.             Length = lengthArr;
  9.             Arr = new byte[Length];            
  10.         }
  11.        
  12.         public bool Inc()
  13.         {
  14.             for (int i = Length - 1; i >= 0; i--)
  15.             {
  16.                 if (Arr[i] < 255)
  17.                 {
  18.                     Arr[i]++;
  19.                     break;
  20.                 }
  21.                 else
  22.                 {
  23.                    
  24.                     Arr[i] = 0;
  25.                     if (i == 0) return false;
  26.                 }
  27.             }
  28.             return true;
  29.         }
  30.  
  31.         public byte[] GetArray()
  32.         {
  33.             return Arr;
  34.         }
  35.  
  36.  
  37.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement