Aracılığıyla paylaş


FileCodeGroup.AttributeString Özellik

Tanım

Kod grubu için ilke deyimi özniteliklerinin dize gösterimini alır.

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

Özellik Değeri

Her zaman null.

Örnekler

Aşağıdaki kod, kod grubunun özniteliklerini almak için özelliğinin kullanımını AttributeString gösterir. Bu kod örneği, sınıfı için FileCodeGroup sağlanan daha büyük bir örneğin parçasıdır.

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

Açıklamalar

FileCodeGroup kullanmaz AttributeString, bu nedenle bu özellik her zaman nullolur.

Şunlara uygulanır