BindingContext.ICollection.Count プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
BindingContextによって管理CurrencyManagerオブジェクトの合計数を取得します。
property int System::Collections::ICollection::Count { int get(); };
int System.Collections.ICollection.Count { get; }
member this.System.Collections.ICollection.Count : int
ReadOnly Property Count As Integer Implements ICollection.Count
プロパティ値
BindingContextによって管理されるデータ ソースの数。
実装
例
次のコード例は、BindingContextによって管理CurrencyManagerオブジェクトの数を返します。
private:
void PrintCount()
{
Console::WriteLine( "BindingContext->Count {0}",
( (ICollection^)(this->BindingContext) )->Count );
}
private void PrintCount(){
Console.WriteLine("BindingContext.Count " + ((ICollection) this.BindingContext).Count);
}
Private Sub PrintCount()
Console.WriteLine("BindingContext.Count " _
+ CType(Me.BindingContext, ICollection).Count.ToString())
End Sub