SuppressIldasmAttribute 建構函式

定義

初始化 SuppressIldasmAttribute 類別的新執行個體。

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

範例

下列程式代碼範例示範如何將 屬性套用 SuppressIldasmAttribute 至元件。

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

備註

SuppressIldasmAttribute 屬性套用至元件或模組,以防止使用 Ildasm.exe (IL 反組譯程式) 來 反組譯元件或模組。

適用於