DiscardableAttribute Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DiscardableAttribute class with default values.
public:
DiscardableAttribute();
public DiscardableAttribute ();
Public Sub New ()
Examples
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
Applies to
Samarbejd med os på GitHub
Kilden til dette indhold kan findes på GitHub, hvor du også kan oprette og gennemse problemer og pullanmodninger. Du kan få flere oplysninger i vores vejledning til bidragydere.