mirror of
https://github.com/Steffo99/better-tee.git
synced 2024-11-22 15:24:18 +00:00
16 lines
290 B
C#
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
|
|
}
|
|
}
|
|
}
|