Preferences.ContainsKey 方法

定义

重载

ContainsKey(String)

检查给定密钥是否存在。

ContainsKey(String, String)

检查给定密钥是否存在。

ContainsKey(String)

Source:
Preferences.shared.cs
Source:
Preferences.shared.cs

检查给定密钥是否存在。

public:
 static bool ContainsKey(System::String ^ key);
public static bool ContainsKey (string key);
static member ContainsKey : string -> bool
Public Shared Function ContainsKey (key As String) As Boolean

参数

key
String

要检查的键。

返回

true 如果首选项中存在键,则为 ;否则为 false

适用于

ContainsKey(String, String)

Source:
Preferences.shared.cs
Source:
Preferences.shared.cs

检查给定密钥是否存在。

public:
 static bool ContainsKey(System::String ^ key, System::String ^ sharedName);
public static bool ContainsKey (string key, string? sharedName);
static member ContainsKey : string * string -> bool
Public Shared Function ContainsKey (key As String, sharedName As String) As Boolean

参数

key
String

首选项键。

sharedName
String

共享容器名称。

返回

如果键存在,则返回 true。

适用于