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

◆ Message

override string System.ArgumentException.Message
getinherited

Definition at line 12 of file ArgumentException.cs.

13 {
14 get
15 {
17 string text = base.Message;
18 if (!string.IsNullOrEmpty(_paramName))
19 {
20 text = text + " " + SR.Format(SR.Arg_ParamName_Name, _paramName);
21 }
22 return text;
23 }
24 }