terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Message

override string System.ArgumentOutOfRangeException.Message
get

Definition at line 68 of file ArgumentOutOfRangeException.cs.

69 {
70 get
71 {
72 string message = base.Message;
73 object actualValue = this._actualValue;
74 string text;
75 if (actualValue != null)
76 {
77 text = SR.Format("Actual value was {0}.", actualValue);
78 if (message != null)
79 {
80 string newLine = Environment.NewLine;
81 return message + newLine + text;
82 }
83 }
84 return text;
85 }
86 }
class f__AnonymousType0<< Count > j__TPar
static string Format(string resourceFormat, params object[] args)
Definition SR.cs:33
Definition SR.cs:7
static string NewLine