SuppressIldasmAttribute Oluşturucu

Tanım

SuppressIldasmAttribute sınıfının yeni bir örneğini başlatır.

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

Örnekler

Aşağıdaki kod örneği, özniteliğin SuppressIldasmAttribute bir derlemeye nasıl uygulanacağını gösterir.

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

Açıklamalar

Derlemenin veya modülün SuppressIldasmAttributeIldasm.exe (IL Ayrıştırıcısı) kullanılarak ayrıştırılmasını önlemek için özniteliğini bir derlemeye veya modüle uygulayın.

Şunlara uygulanır