1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2024-11-22 15:24:18 +00:00
better-tee/Assets/Packages/Mirror/Runtime/DotNetCompatibility.cs
2019-09-16 00:28:36 +02:00

16 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
}
}
}