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

The following custom attribute is added automatically

Ve ne siete probabilmente accorti di questo commento nei vostri file IL disassemblati:

// --- The following custom attribute is added automatically, do not uncomment -------
// .custom instance void [mscorlib]System.Diagnostics.DebuggableAttribute::.ctor(bool, bool) = ( 01 00 00 01 00 00 )

Per farlo sparire basta compilare con le opzioni /debug- ("do not emit debugging information") e /o+ ("enable optimizations").

Interessante è il fatto che se non compilate con queste opzioni un assembly decorato con:

[assembly: System.Diagnostics.Debuggable(false, false)]

cioè i parametri isJITTrackingEnabled e isJITOptimizerDisabled a false, ottenete in C# l'errore CS0647:

error CS0647: Error emitting 'System.Diagnostics.DebuggableAttribute' attribute
-- 'Assembly custom attribute 'System.Diagnostics.DebuggableAttribute' was specified multiple times with different values'

Questo perché il compilatore emette comunque questo attributo! - bisogna quindi avere coerenza tra le opzioni di compilazione e le eventuali decorazioni dell'assembly.

Un'altra prova? Il seguente snippet non compila:

namespace System.Diagnostics
{
  class DebuggableAttribute{}
}

se compilato semplicemente con:

csc /t:library foo.cs

però compila se compilato con:

csc /t:library /debug- /o+ foo.cs

L'errore che si ottiene nel primo caso è CS1501:

error CS1501: No overload for method 'DebuggableAttribute' takes '2' arguments

appunto perché "il nuovo" DebuggableAttribute (non quello di mscorlib) non ha un costruttore con due parametri.

Mi sono risposto così alla domanda di un altro mio post di qualche mese fa.

Print | posted on venerdì 22 aprile 2005 13:35 | Filed Under [ Carillon .NET ]

Powered by:
Powered By Subtext Powered By ASP.NET