Software Development Network>> Visual C#>> Quick question - typedef in C#
using DWORD = System.UInt32;
should do it. But note that the statement is scoped per file.
it's explained here, with examples:
http://msdn2.microsoft.com/en-us/library/sf0df423.aspx
Quick question - typedef in C#
Cactus77
using DWORD = System.UInt32;
should do it. But note that the statement is scoped per file.
FSOR
ailuz
eric_from_nj
I tried
using uint DWORD; - an error occured
Could you give me a code sample how to do this
Jakein2006
it's explained here, with examples:
http://msdn2.microsoft.com/en-us/library/sf0df423.aspx