ExpandoObject.IDictionary<String,Object>.TryGetValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取与指定键关联的值。
virtual bool System.Collections.Generic.IDictionary<System.String,System.Object>.TryGetValue(System::String ^ key, [Runtime::InteropServices::Out] System::Object ^ % value) = System::Collections::Generic::IDictionary<System::String ^, System::Object ^>::TryGetValue;
bool IDictionary<string,object>.TryGetValue (string key, out object value);
abstract member System.Collections.Generic.IDictionary<System.String,System.Object>.TryGetValue : string * obj -> bool
override this.System.Collections.Generic.IDictionary<System.String,System.Object>.TryGetValue : string * obj -> bool
Function TryGetValue (key As String, ByRef value As Object) As Boolean Implements IDictionary(Of String, Object).TryGetValue
参数
- key
- String
要获取的值的键。
- value
- Object
当此方法返回时,如果找到该键,则包含与指定的键相关联的值;否则将包含 value
参数的类型默认值。 此参数未经初始化即被传递。
返回
如果实现 IDictionary<TKey,TValue> 的对象包含具有指定键的元素,则为 true
;否则为 false
。