-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
41 lines (38 loc) · 1.26 KB
/
Program.cs
File metadata and controls
41 lines (38 loc) · 1.26 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
35
36
37
38
39
40
41
using UtilityApp.Interface;
using UtilityApp.Models;
using UtilityApp.Functional;
using System.Text;
namespace UtilityApp
{
public class Data
{
public static string chars = "abcdefghijklmnopqrstuvwxyz0123456789";
public static string charsUppercase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
public static string specialChars = "!@#$%^&*()_+[]{}|;:,.<>?";
public static string defaultRegion = "UA";
public static string defaultKeyType = "ED25519";
public static string defaultHashAlgorithm = "SHA256";
public static string defaultTextType = "paragraphs";
public static string defaultDomain = "ast-rum.tech";
public static char defaultSeparator = '-';
public static bool defaultSpecialCharacters = false;
}
public class Program
{
static void Main(string[] args)
{
try
{
Message.ShowMessage();
menu.Animate();
menu.ShowMenu();
}
catch (Exception ex)
{
Console.WriteLine($"An error occurred: {ex.Message}");
Console.WriteLine(ex.StackTrace);
}
Console.Clear();
}
}
}