IsolatedStorageSettingsTryGetValueT Method |
Gets a value for the specified key.
Namespace: System.IO.IsolatedStorageAssembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax public bool TryGetValue<T>(
string key,
out T value
)
Parameters
- key
- Type: SystemString
The key of the value to get. - value
- Type: T
When this method returns, the value associated with the specified key if
the key is found; otherwise, the default value for the type of the value
parameter. This parameter is passed uninitialized.
Type Parameters
- T
- The System.Type of the value parameter.
Return Value
Type:
Booleantrue if the specified key is found; otherwise, false.
See Also