Web Log di Adrian Florea

"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
posts - 440, comments - 2715, trackbacks - 3944

My Links

Archives

Post Categories

Image Galleries

.RO Blogs

.RO People

.RO Sites

Blogs

Furls

Links

vinCitori

Block statements & nop

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...
}

Print | posted on martedì 11 ottobre 2005 23:02 | Filed Under [ Carillon .NET ]

Powered by:
Powered By Subtext Powered By ASP.NET