Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions Unit/Nothing.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1 @@
namespace Unit
{
/// <summary>
/// This class should be used instead of void for return types.
/// </summary>
public class Nothing
{
public static readonly Nothing Instance = new Nothing();

private Nothing() { }

public override string ToString()
{
return "Nothing";
}
}
}