 | DictionaryThreadSafeCopyT, UGetDictionaryKeysThreadSafeCopy method |
Copies thread-safe the keys of IDictionary<T, U> source
to IEnumerable<T> target.
Namespace: NetEti.GlobalsAssembly: NetEti.Global (in NetEti.Global.dll) Version: 1.0.0+ad672dc5430e1683eae7461ce3945c8e9dce1c49
Syntaxpublic static IEnumerable<T> GetDictionaryKeysThreadSafeCopy(
IDictionary<T, U> source
)
Public Shared Function GetDictionaryKeysThreadSafeCopy (
source As IDictionary(Of T, U)
) As IEnumerable(Of T)
public:
static IEnumerable<T>^ GetDictionaryKeysThreadSafeCopy(
IDictionary<T, U>^ source
)
static member GetDictionaryKeysThreadSafeCopy :
source : IDictionary<'T, 'U> -> IEnumerable<'T>
Parameters
- source IDictionaryT, U
- IDictionary of type T, U.
Return value
IEnumerableTCopy of the keys from source as a list of type T.
See also