If you plan to learn how to use Mono.Cecil (or even if you use it on a daily basis) I hope that you are aware of Cecilifier (if you isn´t, feel free to read this blog post).
Now, even if you are already using Cecilifier site, I am almost sure you are not aware of one of its feature (especially because it is not documented ;) ): accepting a gist id in the query string! For example navigating to the following url will open Cecilifier site with the referenced gist processed:
https://cecilifier.me?gistid=412b60e61b2b2158bda06dab73efcbb5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Bar | |
{ | |
// int field = 1; // Looks to be working | |
public long Foo() | |
{ | |
double d = 1.0f; | |
//int i = 10; // Looks to be working | |
return 1; | |
} | |
} |
Have fun!
No comments:
Post a Comment