API to NET mapping

  • Thread starter Thread starter Fernando Rodríguez
  • Start date 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
 
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,
 
Back
Top