monopoly/Assets/Mirror/Runtime/DotNetCompatibility.cs
2020-11-30 08:12:07 +00:00

17 lines
290 B
C#

using System;
namespace Mirror
{
internal static class DotNetCompatibility
{
internal static string GetMethodName(this Delegate func)
{
#if NETFX_CORE
return func.GetMethodInfo().Name;
#else
return func.Method.Name;
#endif
}
}
}