Condividi tramite


FileCodeGroup.AttributeString Proprietà

Definizione

Ottiene una rappresentazione in forma di stringa degli attributi relativi all'istruzione per i criteri del gruppo di codice.

public:
 virtual property System::String ^ AttributeString { System::String ^ get(); };
public override string AttributeString { get; }
member this.AttributeString : string
Public Overrides ReadOnly Property AttributeString As String

Valore della proprietà

Sempre null.

Esempio

Nel codice seguente viene illustrato l'uso della AttributeString proprietà per ottenere gli attributi per il gruppo di codice. Questo esempio di codice fa parte di un esempio più ampio fornito per la FileCodeGroup classe .

if ( fileCodeGroup->AttributeString != nullptr )
{
   throw gcnew NullReferenceException(
      L"The AttributeString property should be null." );
}
if (fileCodeGroup.AttributeString != null)
{
    throw new NullReferenceException(
        "The AttributeString property should be null.");
}
If (Not fileCodeGroup.AttributeString Is Nothing) Then
    Throw New NullReferenceException( _
        "AttributeString property is not empty")
End If

Commenti

FileCodeGroup non usa AttributeString, pertanto questa proprietà è sempre null.

Si applica a