SuppressIldasmAttribute Konstruktor

Definice

Inicializuje novou instanci SuppressIldasmAttribute třídy .

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

Příklady

Následující příklad kódu ukazuje, jak použít SuppressIldasmAttribute atribut na sestavení.

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

Poznámky

Použití atributu SuppressIldasmAttribute na sestavu nebo modul, aby se zabránilo demontáži sestavy nebo modulu pomocí Ildasm.exe (IL Disassembler).

Platí pro