From 35473729e97710a436f931e4c0a1db38bb7f7837 Mon Sep 17 00:00:00 2001 From: Jake Soenneker Date: Thu, 26 Sep 2024 06:32:04 -0500 Subject: [PATCH] public method change --- src/MethodInfoExtension.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;