Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Message

override string System.ArgumentOutOfRangeException.Message
get

Definition at line 12 of file ArgumentOutOfRangeException.cs.

13 {
14 get
15 {
16 string message = base.Message;
17 if (_actualValue != null)
18 {
19 string text = SR.Format(SR.ArgumentOutOfRange_ActualValue, _actualValue);
20 if (message == null)
21 {
22 return text;
23 }
24 return message + "\r\n" + text;
25 }
26 return message;
27 }
28 }