(Type type)
| 23 | internal static class TypeMapKey |
| 24 | { |
| 25 | [MethodImpl(MethodImplOptions.AggressiveInlining)] |
| 26 | internal static ulong Get(Type type) |
| 27 | { |
| 28 | long value = type.TypeHandle.Value.ToInt64(); |
| 29 | return unchecked((ulong)value); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | /// <summary> |
no test coverage detected