SuppressIldasmAttribute Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe SuppressIldasmAttribute.
public:
SuppressIldasmAttribute();
public SuppressIldasmAttribute ();
Public Sub New ()
Exemples
L’exemple de code suivant montre comment appliquer l’attribut SuppressIldasmAttribute à un assembly.
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
Remarques
Appliquez l’attribut SuppressIldasmAttribute à un assembly ou un module pour empêcher le désassemblement de l’assembly ou du module à l’aide du Ildasm.exe (désassembleur IL).