c - Does the .NET runtime internally map to win32 function calls? -


In other words, does the .NET framework finally call elsewhere to get its work? Or Microsoft completely recreate all the functionality of the Win32 Library in their .NET framework.

Thank you! This mixture is obviously, things like Winforms are quite popular around Win32 functionality (or both worlds). There are more wrappers, but WPF is a lot more managed (in the context of the actual control code, under the hood, as mash notes, it may be used for DirectX portrayals). Similarly, things like file / network access around OS objects (according to requirement) are wrappers, such as Mutex - but many other things are managed 100%.

So this is not a simple answer.

(Edit) Also - keep in mind that ".NET" is a very obscure word; Compact Framework, Micro Framework, Silverlight etc. can have different, non-Win32 implementations.


Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -