Adding nullable operator

This commit is contained in:
2023-03-28 12:53:16 +02:00
parent a59fe2df50
commit 7827ea8ce9

View File

@@ -31,7 +31,7 @@ namespace Password_Generator
return builder.ToString();
}
public static string New(string recipient, int length, bool no_symbols = false)
public static string? New(string recipient, int length, bool no_symbols = false)
{
try
{