Skip to content

Commit

Permalink
public method change
Browse files Browse the repository at this point in the history
  • Loading branch information
soenneker committed Sep 26, 2024
1 parent 83a0380 commit 3547372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MethodInfoExtension.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using System.Reflection;
using System.Text;
using ParameterInfo = System.Reflection.ParameterInfo;

namespace Soenneker.Extensions.MethodInfo;

Expand Down Expand Up @@ -74,7 +74,7 @@ public static string GetSignature(this System.Reflection.MethodInfo? methodInfo)
/// <returns>
/// A <see cref="string"/> containing the original member name, with any accessor prefixes removed.
/// </returns>
internal static string ToOriginalMemberName(this System.Reflection.MethodInfo methodInfo)
public static string ToOriginalMemberName(this System.Reflection.MethodInfo methodInfo)
{
string methodName = methodInfo.Name;

Expand Down

0 comments on commit 3547372

Please # to comment.