src\libraries\System.Private.CoreLib\src\System\Enum.cs (11)
110return GetName(GetEnumInfo<byte>(enumType), (byte)(sbyte)uint64Value);
114return GetName(GetEnumInfo<byte>(enumType), (byte)uint64Value);
118return GetName(GetEnumInfo<ushort>(enumType), (ushort)(short)uint64Value);
122return GetName(GetEnumInfo<ushort>(enumType), (ushort)uint64Value);
126return GetName(GetEnumInfo<uint>(enumType), (uint)(int)uint64Value);
130return GetName(GetEnumInfo<uint>(enumType), (uint)uint64Value);
133return GetName(GetEnumInfo<ulong>(enumType), (ulong)(long)uint64Value);
136return GetName(GetEnumInfo<ulong>(enumType), uint64Value);
141return GetName(GetEnumInfo<char>(enumType), (char)uint64Value);
149return GetName(GetEnumInfo<nuint>(enumType), (nuint)(nint)uint64Value);
155return GetName(GetEnumInfo<nuint>(enumType), (nuint)uint64Value);