共用方式為


FileCodeGroup.AttributeString 屬性

定義

取得程式碼群組之原則陳述式屬性 (Attribute) 的字串表示。

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

屬性值

一定是 null

範例

下列程式代碼示範如何使用 AttributeString 屬性來取得程式代碼群組的屬性。 此程式代碼範例是針對 類別提供的較大範例的 FileCodeGroup 一部分。

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

備註

FileCodeGroup 不會使用 AttributeString,因此這個屬性一律 null為 。

適用於