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