From 67efdc5ec35656a92665b90750b11b26ab2ba011 Mon Sep 17 00:00:00 2001 From: mischa Date: Mon, 7 Oct 2024 14:25:17 +0200 Subject: [PATCH] fix: Extensions.GetMethodName made public to make it accessible from Netgraph --- Assets/Mirror/Core/Tools/Extensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Mirror/Core/Tools/Extensions.cs b/Assets/Mirror/Core/Tools/Extensions.cs index ff5755354..839481e2b 100644 --- a/Assets/Mirror/Core/Tools/Extensions.cs +++ b/Assets/Mirror/Core/Tools/Extensions.cs @@ -54,7 +54,7 @@ public static ushort GetStableHashCode16(this string text) // previously in DotnetCompatibility.cs // leftover from the UNET days. supposedly for windows store? - internal static string GetMethodName(this Delegate func) + public static string GetMethodName(this Delegate func) { #if NETFX_CORE return func.GetMethodInfo().Name;