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

◆ ApplyPolicy()

string System.AppDomain.ApplyPolicy ( string assemblyName)
inline

Definition at line 199 of file AppDomain.cs.

200 {
201 if (assemblyName == null)
202 {
203 throw new ArgumentNullException("assemblyName");
204 }
205 if (assemblyName.Length == 0 || assemblyName[0] == '\0')
206 {
207 throw new ArgumentException(SR.Argument_StringZeroLength, "assemblyName");
208 }
209 return assemblyName;
210 }

References System.SR.Argument_StringZeroLength.