From 7827ea8ce9679db2f42c4273739d706d61872d3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miskolczi=20Rich=C3=A1rd?= Date: Tue, 28 Mar 2023 12:53:16 +0200 Subject: [PATCH] Adding nullable operator --- Password Manager/PasswordGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Password Manager/PasswordGenerator.cs b/Password Manager/PasswordGenerator.cs index aff5b8d..7b387c5 100644 --- a/Password Manager/PasswordGenerator.cs +++ b/Password Manager/PasswordGenerator.cs @@ -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 {