We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e734d4d commit 3faf90cCopy full SHA for 3faf90c
1 file changed
Code/Helpers/Safe.cs
@@ -21,4 +21,6 @@ private init
21
22
public static implicit operator T(Safe<T> wrapper) => wrapper.Value;
23
public static implicit operator Safe<T>(T value) => new() { Value = value };
24
+
25
+ public override string ToString() => Value?.ToString() ?? "null";
26
}
0 commit comments