DiscardableAttribute Konstruktor

Definition

Initierar en ny instans av DiscardableAttribute klassen med standardvärden.

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

Exempel

Följande kodexempel visar hur du tillämpar attributet på DiscardableAttribute en typ.

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

Gäller för