Here's a little piece of code that allows you to get a Key from the provided map. If the map doesn't contain the key then it'll return null.
Private Sub GetIfExists (SourceMap As Map, Key As Object) As Object
If SourceMap.ContainsKey(Key) Then
Return SourceMap.Get(Key)
Else...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.