This commit is contained in:
TheXamlGuy
2024-06-16 17:25:13 +01:00
parent 02969b3850
commit 8d574362a0
22 changed files with 56 additions and 52 deletions
@@ -42,7 +42,7 @@ public class ValidationErrorCollection :
public string this[string key]
{
get => items.ContainsKey(key) ? items[key] : "";
get => items.TryGetValue(key, out string? value) ? value : "";
set
{
bool replace = items.TryGetValue(key, out var old);