This commit is contained in:
2023-08-03 08:58:53 +03:00
parent c82f8e3537
commit ad31d3ffce
30 changed files with 697 additions and 24 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ public static class StringExtensions
return Guid.Parse(str);
}
public static Guid? AsGuidNull(this string str)
public static Guid? AsGuidNull(this string? str)
{
if (Guid.TryParse(str, out var guid))
{