This post originated from an RSS feed registered with .NET Buzz
by Adrian Florea.
Original Post: Block statements & nop
Feed Title: Web Log di Adrian Florea
Feed URL: /error.aspx?aspxerrorpath=/adrian/Rss.aspx
Feed Description: "You know you've achieved perfection in design, not when you have nothing more to add, but when you have nothing more to take away." Antoine de Saint-Exupery
Se avete bisogno di indviduare il corrispondente IL di un frammento di metodo, basta creare un block in C# per il rispettivo frammento di codice (che sarà delimitato da due nop in IL) :
<method signature in C#> { // codice...
{ // // zona di interesse // } // codice... }
<method signature in IL> { // codice... nop // // zona di interesse // nop // codice... }