Autodesk Vault ProfessionalVault API

Add(KeyType,Func<KeyType,ValueType>) Method

Autodesk.DataManagement.Client.Framework.CurrencyDelegateValueDictionary<KeyType,ValueType>

Adds an element with the provided key and function which is used to compute the value

Syntax

public void Add(
   KeyType key,
   System.Func<KeyType,ValueType> callBack
)
Public Overloads Sub Add( _
   ByVal key As KeyType, _
   ByVal callBack As System.Func(Of KeyType,ValueType) _
) 

Parameters

NameDescription
keyThe object to use as the key of the element to add.
callBackThe function which will be called to compute the value when this item is retrieved from the dictionary

See Also