API to NET mapping

  • Thread starter Fernando Rodríguez
  • Start date
F

Fernando Rodríguez

Hi,

Is there some document that maps API functions to .net framework's
functionality?

For example, if I want to know the .net equivalent of SetParent() or any other
api function, where should I go for this info?

TIA
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,

AFAIK there is not such a mapping, the API is not organized in classes as
the framework is , you will have to use the logic to try to find where the
function is defined, like SetParent, as it;s related to windows should be in
the Control class, just that it's not longer a method it's a property now !!

so you have to look carefuly :)

cheers,
 

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

Top