SuppressIldasmAttribute Konstruktor

Definition

Initialisiert eine neue Instanz der SuppressIldasmAttribute-Klasse.

public:
 SuppressIldasmAttribute();
public SuppressIldasmAttribute ();
Public Sub New ()

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie das SuppressIldasmAttribute Attribut auf eine Assembly angewendet wird.

using System;
using System.Runtime.CompilerServices;

[assembly: SuppressIldasmAttribute()]
class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("The SuppressIldasmAttribute is applied to this assembly.");
    }
}
Imports System.Runtime.CompilerServices



<Assembly: SuppressIldasmAttribute()> 


Class Program

    Shared Sub Main(ByVal args() As String)
        Console.WriteLine("The SuppressIldasmAttribute is applied to this assembly.")

    End Sub
End Class

Hinweise

Wenden Sie das SuppressIldasmAttribute Attribut auf eine Assembly oder ein Modul an, um zu verhindern, dass die Assembly oder das Modul mithilfe des Ildasm.exe (IL Disassembler) disassembliert wird.

Gilt für: