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

◆ GetCompareInfo() [4/4]

static CompareInfo System.Globalization.CompareInfo.GetCompareInfo ( string name,
Assembly assembly )
inlinestatic

Definition at line 140 of file CompareInfo.cs.

141 {
142 if (name == null)
143 {
144 throw new ArgumentNullException("name");
145 }
146 if (assembly == null)
147 {
148 throw new ArgumentNullException("assembly");
149 }
150 if (assembly != typeof(object).Module.Assembly)
151 {
152 throw new ArgumentException(SR.Argument_OnlyMscorlib, "assembly");
153 }
154 return GetCompareInfo(name);
155 }
static CompareInfo GetCompareInfo(int culture, Assembly assembly)
virtual Assembly Assembly
Definition Module.cs:15

References System.SR.Argument_OnlyMscorlib, System.Reflection.Module.Assembly, System.Runtime.Serialization.Dictionary, and System.Globalization.CompareInfo.GetCompareInfo().