Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Empty.cs
Go to the documentation of this file.
1namespace System;
2
3internal sealed class Empty
4{
5 public static readonly Empty Value = new Empty();
6
7 private Empty()
8 {
9 }
10
11 public override string ToString()
12 {
13 return string.Empty;
14 }
15}
static readonly Empty Value
Definition Empty.cs:5
override string ToString()
Definition Empty.cs:11