// C# program to demonstrate
// BitConverter.ToUInt64(Byte[], Int32);
// Method
using System;
class GFG {
// Main Method
public static void Main()
{
try {
// Define an array of byte values.
byte[] bytes = {32, 0, 0, 42, 0, 65,
0, 125, 0, 197, 0,
168, 3, 41, 4, 125,32};
// Display the values of the myArr.
Console.Write("Initial Array: ");
// calling the PrintIndexAndValues()
// method to print
PrintIndexAndValues(bytes);
// print char value
Console.WriteLine("index element"+
" ulong value");
for (int index = 0; index < bytes.Length + 1;
index = index + 8) {
if (index == bytes.Length) {
Console.WriteLine();
Console.WriteLine("startindex is {0} which is greater than "
+ "the length of Array minus 1.", index);
ulong values = BitConverter.ToUInt64(bytes, index);
Console.WriteLine(" {0} {1} {2}", index,
BitConverter.ToString(bytes, index, 8), values);
}
else {
ulong values = BitConverter.ToUInt64(bytes, index);
Console.WriteLine(" {0} {1} {2}", index,
BitConverter.ToString(bytes, index, 8), values);
}
}
}
catch (ArgumentNullException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
catch (ArgumentOutOfRangeException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
catch (ArgumentException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
// Defining the method
// PrintIndexAndValues
public static void PrintIndexAndValues(byte[] myArr)
{
for (int i = 0; i < myArr.Length; i++) {
Console.Write("{0} ", myArr[i]);
}
Console.WriteLine();
Console.WriteLine();
Console.WriteLine("initial Array in string: {0} ",
BitConverter.ToString(myArr));
Console.WriteLine();
}
}