diff --git a/src/MethodInfoExtension.cs b/src/MethodInfoExtension.cs index 4ec905e..a7ab972 100644 --- a/src/MethodInfoExtension.cs +++ b/src/MethodInfoExtension.cs @@ -1,6 +1,6 @@ using System; +using System.Reflection; using System.Text; -using ParameterInfo = System.Reflection.ParameterInfo; namespace Soenneker.Extensions.MethodInfo; @@ -74,7 +74,7 @@ public static string GetSignature(this System.Reflection.MethodInfo? methodInfo) /// /// A containing the original member name, with any accessor prefixes removed. /// - internal static string ToOriginalMemberName(this System.Reflection.MethodInfo methodInfo) + public static string ToOriginalMemberName(this System.Reflection.MethodInfo methodInfo) { string methodName = methodInfo.Name;