Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the equivalent of WORD in C#?

I'm trying to access an unmanaged library and am lucky to have access to a comprehensive guide to the API.

Unfortunately, I've no idea what the C# equivalent of C++'s WORD type is. Similarly, I've no idea what DWORD would be.

like image 484
Tom Wright Avatar asked Mar 30 '11 18:03

Tom Wright


1 Answers

You're probably looking for ushort for WORD and uint for DWORD.

like image 113
yan Avatar answered Oct 15 '22 02:10

yan