You cannot post messages because only members can post, and you are not currently a member.
Description:
Groups about the Mono.Cecil library
|
|
|
Import Type by name of possibly TypeForwarded type.
|
| |
I'm new to Mono.Cecil and I'm trying to do some AOP with it to create a Fody Addin. I'd like to add a property of type System.Windows.Input.ICommand to a class using Mono.Cecil. Prior to .NET 4.5 this type existed in PresentationCore, but if .NET 4.5 is installed this type exists in System.dll, thanks to the magic of... more »
|
|
Compact Framework 3.5 vs Cecil
|
| |
Hello, my device is using .Net Compact Framework 3.5. It looks like this version has not been included into the Mono.Cecil.TargetRuntime enumeration (it contains Net_1_0, Net_1_1, Net_2_0, Net_4_0 but no Net_3_5). This is the reason I get an exception after this method is called: Mono.Cecil.ModuleParameters.Ge tCurrentRuntime().... more »
|
|
Malicious obfuscated code
|
| |
Hi all
In this great article (
[link]) the author says that Mono.Cecil It’s not perfect, but it translated a good 90% of the functions without any issues.
My question to you guys is can a evil programmer obfuscate malicious code... more »
|
|
AssemblyNameReference.Parse () and odd paths
|
| |
Hi list, I ran into a nasty bug today: csharp> LoadAssembly("Mono.Cecil.dll") ; csharp> using Mono.Cecil; csharp> AssemblyNameReference.Parse ("foo"); foo, Culture=neutral, PublicKeyToken=null csharp> AssemblyNameReference.Parse ("/foo/bar"); /foo/bar, Culture=neutral, PublicKeyToken=null csharp> AssemblyNameReference.Parse ("/foo/bar, baz/qux");... more »
|
|
Built-in generics using dynamic types as arguments
|
| |
Hello, I'm currently using Reflection.Emit and I'm sick to death making workarounds for its strange behaviours. Currently I'm stuck trying to generate a certain class. Using C# notation, it would look like this: class A ...The trick is, Reflection.Emit allows calling any introspection methods on neither dynamically generated types, nor *any generic types using those... more »
|
|
|