Question

I wanted to know if windows explorer is created like in C# using ListView and other components, is it like that ?

Was it helpful?

Solution

Use dependency walker to open explorer.exe and see if it has dependencies on any .NET assembly, and you will find that it does not.

Here's the output from my machine (Windows 7 x64):

Windows 7 x64 explorer.exe dependencies

As you can see there is no dependency to mscoree.dll, which is a dead giveaway that explorer.exe has nothing to do with .NET.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top