From 745c452aeabb5ffa54c6f65e384e535283e5c34e Mon Sep 17 00:00:00 2001 From: Don Syme Date: Wed, 28 Jul 2021 12:52:26 +0100 Subject: [PATCH] Spiking a new approach --- Unit/Nothing.cs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Unit/Nothing.cs b/Unit/Nothing.cs index 37f1930..8b13789 100644 --- a/Unit/Nothing.cs +++ b/Unit/Nothing.cs @@ -1,17 +1 @@ -namespace Unit -{ - /// - /// This class should be used instead of void for return types. - /// - public class Nothing - { - public static readonly Nothing Instance = new Nothing(); - private Nothing() { } - - public override string ToString() - { - return "Nothing"; - } - } -}