CompilerGlobalScopeAttribute Konstruktor

Definicja

Inicjuje nowe wystąpienie klasy CompilerGlobalScopeAttribute.

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

Przykłady

W poniższym przykładzie kodu pokazano, jak zastosować element CompilerGlobalScopeAttribute.

using System;
using System.Runtime.CompilerServices;

[CompilerGlobalScopeAttribute()]
class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("The attribute was applied.");
    }
}
Imports System.Runtime.CompilerServices

<CompilerGlobalScopeAttribute()> _
Module Program


    Sub Main(ByVal args() As String)
        Console.WriteLine("The attribute was applied.")
    End Sub


End Module

Dotyczy