I am trying to decompile the ComboBox control for my Windows Store app into C#, but there's no code. Instead, all the properties are calls to a separate assembly, it seems. How do I find where the real code exists, and how do I read the method bodies in C#? I cannot read assembly, so that would do me no good
|
|
Some notes on how to reverse-engineer the WinRT internals.
This directory contains IDL files, or
It is kinda readable as-is, resembling an interface declaration in C#. If you've tinkered with COM before then you'll see new attributes from the original IDL syntax. Extra stuff to aid the language projection built into your runtime support library to create the illusion that WinRT supports implementation inheritance, generics and static class members, features that pure COM doesn't have. These IDL files are compiled by As is common in COM, the registry is used to find the executable that contains the code for a COM server. Start That's about where you hit the wall; the DLL contains native code like the majority of COM servers do. Pretty impervious to decompilation. |
||||
|
|
|
So I found the assembly. You just have to search for the .dll file on the system (eg. Windows.XAML.UI.Controls.dll in my case), but it's not possible to disassemble it to C#. Turns out there are no C# disassemblers for the WinRT assemblies (at least, when I looked last) |
|||||
|