, .NET -, , .
Dictionary<TKey, TValue>, TryGetValue , :
public class MyAppSettings<TKey, TValue> : Dictionary<TKey, TValue>
{
public void TryGetValue(TKey key, out TValue value, TValue defaultValue)
{
if (!this.TryGetValue(key, out value))
{
value = defaultValue;
}
}
}
, string .
DependencyObject Silverlight WPF, .
, - - NameValueCollection:
string value = string.IsNullOrEmpty(appSettings[key])
? defaultValue
: appSettings[key];
key null . , , .