211 Commits (1331869851e729d9a08529a5ff21d12c764b877d)

Author SHA1 Message Date
Daniel Grunwald 99f5c45a16 Use C# syntax for generic types in the tree view. 15 years ago
Daniel Grunwald 7eedd1b7ab Fix decompilation of assembly into single file. 15 years ago
Daniel Grunwald 3211ccbf6a Introduce using declarations in decompiled code. 15 years ago
Daniel Grunwald 039483ddbd Optimize PatternStatementTransform. 15 years ago
Daniel Grunwald dbbd5d872b Add support for destructors. Closes #73. 15 years ago
David Srbecký ab9452a30e ILBasicBlock refactored to consist only of the body. Removed ILComment. Closes #86 15 years ago
Daniel Grunwald bc229df848 Handle pointer arithmetic. 15 years ago
Daniel Grunwald 3ed0de81f7 Support fixed statement with multiple initializers. 15 years ago
Daniel Grunwald 1b90809728 Implemented 'fixed' statement for arrays. 15 years ago
Daniel Grunwald 3759b614cf Add support for calling methods on pointers (ptr->ToString()). 15 years ago
Daniel Grunwald db7653653d Add support for decompiling fixed statements. 15 years ago
Daniel Grunwald a3c241dac6 Improve handling of pinned variables. 15 years ago
Daniel Grunwald 7b2c444181 Add support for unsafe code. Closes #48. 15 years ago
Daniel Grunwald 2601a4901a Fix "Missing variable name in created C# code". Closes #81. 15 years ago
Daniel Grunwald 01d7e2abbd Use the same representation for parameters and variables. 15 years ago
Daniel Grunwald 2228f29330 Convert [ParamArray] and [Extension] to 'params'/'this' modifiers. 15 years ago
Daniel Grunwald eb84a840f5 Improve name generation. 15 years ago
Daniel Grunwald 43b30dabd0 Consider where a variable is used when determining a name for the variable. 15 years ago
Daniel Grunwald 892996f079 Assign names to parameters. Closes #41, #81. 15 years ago
Daniel Grunwald c4335dd2ef Fix decompilation of arrays as attribute arguments. Closes #82. 15 years ago
David Srbecký 616503f9a9 Added method to calculate unassigned ILRanges 15 years ago
David Srbecký 7318663cd5 GetSelfAndChildrenRecursive can be predicated 15 years ago
David Srbecký a58cdc6a6e Support for the null coalescing operator 15 years ago
Daniel Grunwald bf6e4bbfd9 Transform 'try { try {} catch {} } finally {}' to 'try {} catch {} finally {}'. Closes #77. 15 years ago
Daniel Grunwald 93d1a30ebd Fix creation of attribute argument for [MarshalAs]. Closes #78. 15 years ago
Daniel Grunwald f95c53384c Fix transformation of closure variables for anonymous methods within generic methods. 15 years ago
Daniel Grunwald e9c6aa15e6 Fix switch on string when the compiler introduced a temporary variable for the string being switched on. 15 years ago
Daniel Grunwald b161b7e947 Fix conversion of field initializers when there are constructors that call 'this..ctor(...);' 15 years ago
Daniel Grunwald e0fb40fbcc Fixed decompilation of lambda expressions within generic classes. 15 years ago
Daniel Grunwald 98678dcc4e Fix switch expression. 15 years ago
Daniel Grunwald 55e51394b9 Add support for switch over strings. 15 years ago
Daniel Grunwald b6d832d212 Add support for collection initializers. 15 years ago
Daniel Grunwald 2892c9d50b Implemented decompilation of 'lock'. 15 years ago
Daniel Grunwald 72ee5d309c Improve array initializer support. 15 years ago
Daniel Grunwald 33625c0cc5 Fix decompilation of abstract events. 15 years ago
Daniel Grunwald de3d9117c4 Make collapsing of "x = x + y" to "x += y" work in a few more cases. 15 years ago
Daniel Grunwald 404b27c860 Fixed crash when decompiling System.Net.ShellExpression. 15 years ago
Daniel Grunwald ccf189d505 Fix NullReferenceException when an interface method named 'Invoke' is called. 15 years ago
Daniel Grunwald ddd7b9d526 Fix NullReferenceException when decompiling an automatic property within a generic class. 15 years ago
Daniel Grunwald 3c1400d605 Fixed bug in DeclareVariableInSmallestScope 15 years ago
Daniel Grunwald 5c45d4c700 Fixed bug that caused redundant casts. 15 years ago
Daniel Grunwald 88160e9777 Decompile delegates into a delegate declaration instead of a type declaration. 15 years ago
Daniel Grunwald f3069b99f9 Add support for decompiling automatic events. 15 years ago
Daniel Grunwald 8ffb317cc4 Add support for decompiling do-while loops. 15 years ago
Daniel Grunwald 41d6c3f6eb Don't show compiler-generated code for automatic properties. Closes #69. 15 years ago
Daniel Grunwald fe345d5e0c Support explicit interface implementation for events. 15 years ago
Daniel Grunwald 87a654c451 Output accessibility of getter/setter when it differs from the accessibility of the property. 15 years ago
Daniel Grunwald 49a702f0cf Don't use ".Invoke" for delegate invocations. 15 years ago
Artur Zgodziski 1e9de3c359 small code reformatting 15 years ago
Artur Zgodziski 16fd9d07e3 Indexers support. Explicit implementation of methods and parameters. 15 years ago