SuppressIldasmAttribute 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 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 反組譯程式) 來 反組譯元件或模組。