Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
GetRuntimeMethods()
static
IEnumerable
<
MethodInfo
> System.Reflection.RuntimeReflectionExtensions.GetRuntimeMethods
(
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)]
this
Type
type
)
inline
static
Definition at line
17
of file
RuntimeReflectionExtensions.cs
.
18
{
19
if
(
type
==
null
)
20
{
21
throw
new
ArgumentNullException(
"type"
);
22
}
23
return
type
.GetMethods(BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic);
24
}
System.ExceptionArgument.type
@ type
References
System.type
.
System
Reflection
RuntimeReflectionExtensions
Generated by
1.10.0