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

◆ LoadWithPartialName()

static ? Assembly System.Reflection.Assembly.LoadWithPartialName ( string partialName)
inlinestaticinherited

Definition at line 164 of file Assembly.cs.

165 {
166 if (partialName == null)
167 {
168 throw new ArgumentNullException("partialName");
169 }
170 if (partialName.Length == 0 || partialName[0] == '\0')
171 {
172 throw new ArgumentException(SR.Format_StringZeroLength, "partialName");
173 }
174 try
175 {
176 StackCrawlMark stackMark = StackCrawlMark.LookForMyCaller;
178 }
180 {
181 return null;
182 }
183 }
static ? AssemblyLoadContext CurrentContextualReflectionContext

References System.Runtime.Loader.AssemblyLoadContext.CurrentContextualReflectionContext, System.SR.Format_StringZeroLength, and System.Reflection.RuntimeAssembly.InternalLoad().