HttpStaticObjectsCollection.Count プロパティ

定義

コレクション内のオブジェクトの数を取得します。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

プロパティ値

Int32

コレクションに含まれる オブジェクトの数。

実装

次の例のコードは、コレクション内のオブジェクトの数が 5 を超える場合にのみ実行されます。

if (Application.StaticObjects.Count > 5)
{
   //...
}
If Application.StaticObjects.Count > 5 Then
   '...
End If

適用対象