CompilerGlobalScopeAttribute 构造函数

定义

初始化 CompilerGlobalScopeAttribute 类的新实例。

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

示例

下面的代码示例演示如何应用 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

适用于