Exemplo n.º 1
0
        internal static int RotateLeft(int val, byte count)
        {
            uint num1 = Utilities.RotateLeft((uint)val, count);

            return(num1.GetHashCode());
        }
Exemplo n.º 2
0
 internal static void ToFile(object[] arr)
 {
     byte[] buffer1 = new byte[arr.Length];
     Array.Copy(arr, 0, buffer1, 0, arr.Length);
     Utilities.ToFile(buffer1);
 }