Collection.Contains(String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Visual Basic の Collection
オブジェクトに特定のキーを持つ要素が含まれているかどうかを示す値を返します。
public:
bool Contains(System::String ^ Key);
public bool Contains (string Key);
member this.Contains : string -> bool
Public Function Contains (Key As String) As Boolean
パラメーター
- Key
- String
必須です。 コレクションの要素を検索するキーを指定する String
型の式。
戻り値
Visual Basic の Collection
オブジェクトに特定のキーを持つ要素が含まれている場合は true
。それ以外の場合は false
。
例
Dim customers As New Microsoft.VisualBasic.Collection()
Dim accountNumber As String = "1234"
' Insert code that obtains new customer objects.
' Use the new customer's account number as the key.
customers.Add(newCustomer, accountNumber)
' The preceding statements can be repeated for several customers.
Dim searchNumber As String = "1234"
' Insert code to obtain an account number to search for.
If customers.Contains(searchNumber) Then
MsgBox("The desired customer is in the collection.")
Else
MsgBox("The desired customer is not in the collection.")
End If
キーを使用して要素のコレクションを検索する場合、Add
メソッドを呼び出すたびに Key
引数を指定してください。
注釈
Key
と完全に一致するキーを持つ要素がコレクションに含まれている場合、Contains
は True
を返します。 それ以外の場合、Contains
は False
を返します。 一致するキー値の大文字小文字は無視されます。
Visual Basic Collection
は、キーを持つ要素およびキーを持たない要素を保持できます。 これは、Add メソッドの呼び出しで、省略可能な引数 Key
パラメーターを提供したかどうかによります。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET