Hi all,
does anyone know the equivalent in C# to the C++ code below?
Code:
typedef unsigned int DWORD;
Basically I want to add a level of abstraction to a type by redefining it.
Then in my code I can refer to the DWORD type rather than the uint. If the definition of DWORD changes all I need to do is change the definition.
Cheers.