Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MethodInfoExtensions.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3public static class MethodInfoExtensions
4{
5 public static MethodInfo GetBaseDefinition(this MethodInfo method)
6 {
7 ArgumentNullException.ThrowIfNull(method, "method");
8 return method.GetBaseDefinition();
9 }
10}
static void ThrowIfNull([NotNull] object? argument, [CallerArgumentExpression("argument")] string? paramName=null)
static MethodInfo GetBaseDefinition(this MethodInfo method)