Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ Message

override string System.Runtime.CompilerServices.SwitchExpressionException.Message
get

Definition at line 11 of file SwitchExpressionException.cs.

12 {
13 get
14 {
15 if (UnmatchedValue == null)
16 {
17 return base.Message;
18 }
19 string text = SR.Format(SR.SwitchExpressionException_UnmatchedValue, UnmatchedValue);
21 }
22 }