SfcDictionaryCollection<T, K, ParentT>.TryGetValue 메서드
Gets the value associated with the specified key.
네임스페이스: Microsoft.SqlServer.Management.Sdk.Sfc
어셈블리: Microsoft.SqlServer.Management.Sdk.Sfc(Microsoft.SqlServer.Management.Sdk.Sfc.dll)
구문
‘선언
Public Function TryGetValue ( _
key As K, _
<OutAttribute> ByRef obj As T _
) As Boolean
‘사용 방법
Dim instance As SfcDictionaryCollection
Dim key As K
Dim obj As T
Dim returnValue As Boolean
returnValue = instance.TryGetValue(key, _
obj)
public bool TryGetValue(
K key,
out T obj
)
public:
bool TryGetValue(
K key,
[OutAttribute] T% obj
)
member TryGetValue :
key:'K *
obj:'T byref -> bool
public function TryGetValue(
key : K,
obj : T
) : boolean
매개 변수
- key
유형: K
The key of the value to get.
- obj
유형: 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.
반환 값
유형: System.Boolean
True if the collection contains an element with the specified key; otherwise, false.