-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTermination.cs
More file actions
34 lines (20 loc) · 2.32 KB
/
Copy pathTermination.cs
File metadata and controls
34 lines (20 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
namespace Student_Information_System
{
class Termination{
public static void Exit()
{
Console.ForegroundColor = ConsoleColor.Red;
Console.Clear();
Console.WriteLine("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
Console.Write(@"
████████╗███████╗██████╗░███╗░░░███╗██╗███╗░░██╗░█████╗░████████╗███████╗██████╗░██╗
╚══██╔══╝██╔════╝██╔══██╗████╗░████║██║████╗░██║██╔══██╗╚══██╔══╝██╔════╝██╔══██╗██║
░░░██║░░░█████╗░░██████╔╝██╔████╔██║██║██╔██╗██║███████║░░░██║░░░█████╗░░██║░░██║██║
░░░██║░░░██╔══╝░░██╔══██╗██║╚██╔╝██║██║██║╚████║██╔══██║░░░██║░░░██╔══╝░░██║░░██║╚═╝
░░░██║░░░███████╗██║░░██║██║░╚═╝░██║██║██║░╚███║██║░░██║░░░██║░░░███████╗██████╔╝██╗
░░░╚═╝░░░╚══════╝╚═╝░░╚═╝╚═╝░░░░░╚═╝╚═╝╚═╝░░╚══╝╚═╝░░╚═╝░░░╚═╝░░░╚══════╝╚═════╝░╚═╝
");
Environment.Exit(0);
}
}
}