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

◆ GetInvokee()

static object System.ComponentModel.MemberDescriptor.GetInvokee ( Type componentClass,
object component )
inlinestaticprotectedinherited

Definition at line 347 of file MemberDescriptor.cs.

348 {
349 if (componentClass == null)
350 {
351 throw new ArgumentNullException("componentClass");
352 }
353 if (component == null)
354 {
355 throw new ArgumentNullException("component");
356 }
357 return TypeDescriptor.GetAssociation(componentClass, component);
358 }

References System.ComponentModel.TypeDescriptor.GetAssociation().