DiscardableAttribute 构造函数
定义
使用默认值初始化 DiscardableAttribute 类的新实例。Initializes a new instance of the DiscardableAttribute class with default values.
public:
DiscardableAttribute();
public DiscardableAttribute ();
Public Sub New ()
示例
下面的代码示例演示如何将特性应用于 DiscardableAttribute 类型。The following code example demonstrates how to apply the DiscardableAttribute attribute to a type.
using System;
using System.Runtime.CompilerServices;
[DiscardableAttribute()]
class Program
{
static void Main(string[] args)
{
Console.WriteLine("The DiscardableAttribute attribute was applied.");
}
}
Imports System.Runtime.CompilerServices
<DiscardableAttribute()> Module Program
Sub Main(ByVal args() As String)
Console.WriteLine("The DiscardableAttribute attribute was applied.")
End Sub
End Module