Conversions between C types and VB types

A

active

I've seen a table of conversions between C types and VB.net types.
But now that I need it I can't find it anywhere on the internet.

What I mean, should DWORD be UInteger or Integer, etc.
Do you know where there is such a table?


Secondly, with vb.net should I use
Integer, UInteger... or
Int32, UInt32...


thanks
 
G

Guest

Regarding the first question, here are some links:
http://msdn2.microsoft.com/en-us/library/ac7ay120(vs.71).aspx
http://www.codeproject.com/dotnet/Win32APICPlusPlustoDotNET.asp
Many equivalents can be obtained via our 'C++ to VB Converter' (demo edition).

Regarding the second question, use whichever you prefer. "Integer" is just
a VB language alias for "System.Int32", etc.
--
David Anton
http://www.tangiblesoftwaresolutions.com
Convert between VB, C#, and C++
Instant C#
Instant VB
Instant C++
C++ to C# Converter
C++ to VB Converter
 
A

active

Thanks, just what I needed.


David Anton said:
Regarding the first question, here are some links:
http://msdn2.microsoft.com/en-us/library/ac7ay120(vs.71).aspx
http://www.codeproject.com/dotnet/Win32APICPlusPlustoDotNET.asp
Many equivalents can be obtained via our 'C++ to VB Converter' (demo
edition).

Regarding the second question, use whichever you prefer. "Integer" is
just
a VB language alias for "System.Int32", etc.
--
David Anton
http://www.tangiblesoftwaresolutions.com
Convert between VB, C#, and C++
Instant C#
Instant VB
Instant C++
C++ to C# Converter
C++ to VB Converter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top