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.Globalization.CultureNotFoundException.Message
get

Definition at line 96 of file CultureNotFoundException.cs.

97 {
98 get
99 {
100 string message = base.Message;
101 string text;
102 if (this._invalidCultureId != null || this._invalidCultureName != null)
103 {
105 text = SR.Format("{0} is an invalid culture identifier.", formatedInvalidCultureId);
106 if (message != null)
107 {
108 string newLine = Environment.NewLine;
109 return message + newLine + text;
110 }
111 }
112 return text;
113 }
114 }
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