ProcessingReportTCloneDictionaryTKey, TValue Method |
Deep clones a dictionary,
Namespace:
MFiles.VAF.MultiserverMode
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxprotected static Dictionary<TKey, TValue> CloneDictionary<TKey, TValue>(
Dictionary<TKey, TValue> original
)
where TValue : IDeepCloneable
Protected Shared Function CloneDictionary(Of TKey, TValue As IDeepCloneable) (
original As Dictionary(Of TKey, TValue)
) As Dictionary(Of TKey, TValue)
protected:
generic<typename TKey, typename TValue>
where TValue : IDeepCloneable
static Dictionary<TKey, TValue>^ CloneDictionary(
Dictionary<TKey, TValue>^ original
)
Parameters
- original
- Type: System.Collections.GenericDictionaryTKey, TValue
The original dictionary to clone.
Type Parameters
- TKey
- Type of the key.
- TValue
- Type of the value.
Return Value
Type:
DictionaryTKey,
TValueThe cloned copy.
See Also