2023-05-16 22:54:19 +02:00
|
|
|
|
public class Program {
|
2023-05-16 00:43:47 +02:00
|
|
|
|
static void Main(string[] args) {
|
2023-05-16 22:50:29 +02:00
|
|
|
|
|
|
|
|
|
Console.ForegroundColor = ConsoleColor.Green;
|
|
|
|
|
Console.WriteLine("Starting the checksum process.");
|
|
|
|
|
Console.ResetColor();
|
2023-05-16 00:43:47 +02:00
|
|
|
|
|
2023-05-16 23:21:43 +02:00
|
|
|
|
Chksum.doTheThing();
|
2023-05-16 00:43:47 +02:00
|
|
|
|
|
2023-05-16 22:50:29 +02:00
|
|
|
|
Console.ForegroundColor = ConsoleColor.Green;
|
|
|
|
|
Console.WriteLine("Checksum process finished");
|
|
|
|
|
Console.ResetColor();
|
2023-05-16 00:43:47 +02:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|