loveandkindess
New member
- Joined
- Dec 21, 2024
- Messages
- 1
- Programming Experience
- 1-3
This is my code in C:
How would one do this in C#?
#if UINTPTR_MAX == 0xFFFFu
typedef uint16_t GRAINS_UINTPTR;
#elif UINTPTR_MAX == 0xFFFFFFFFu
typedef uint32_t GRAINS_UINTPTR;
#elif UINTPTR_MAX == 0xFFFFFFFFFFFFFFFFu
typedef uint64_t GRAINS_UINTPTR;
#endif
How would one do this in C#?