FileCodeGroup.AttributeString 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得程式碼群組之原則陳述式屬性 (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
為 。