cecilifier icon indicating copy to clipboard operation
cecilifier copied to clipboard

A tool aiming to make it a little bit easier to learn Mono.Cecil

Results 55 cecilifier issues
Sort by recently updated
recently updated
newest added

```CSharp class Foo { void M(Foo a) { } } class Bar { } ```

bug
fixed-in-staging

```CSharp using System; public class A { B b; } class B { A a; } ``` Cecilifying the code above generates the following code for the field definition: ```CSharp...

bug
fixed-in-staging

the following code will produce invalid il code: public static string Test(string text) { var result = ""; for (int i = 0; i < text.Length; i++) { result +=...

bug
fixed-in-staging

**The order of the entries DOES NOT imply any priority** **Features I DON'T plan to Support** === - async/await - yield iterators - [Async Streams](https://github.com/dotnet/csharplang/blob/master/proposals/csharp-8.0/async-streams.md) **12.0** - [ ] [Interceptors](https://github.com/dotnet/csharplang/issues/7009)...

enhancement

# Thank you for your contribution First, thank you for taking the time to help improving Cecilifier; I really appreciate it. That being said, in order to help improving Cecilifier...

- What are the differences (IL level) to simple, non readonly structs ?

enhancement

- https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/tutorials/static-abstract-interface-methods - https://github.com/dotnet/csharplang/blob/main/proposals/static-abstracts-in-interfaces.md

enhancement
C# 10

use [ILVerify](https://github.com/dotnet/runtime/tree/master/src/coreclr/tools/ILVerify) to ensure assembly built out of cecilified code is valid.

enhancement
good first feature