This small snippet of code is to increment a count value (integer) which is stored in a dictionary using my referenced object as a key. When the dictionary is small, multiple lookups aren't a big deal but this particular dictionary can get quite large.
Private RefCount As IDictionary(Of ILifeTimeManaged, Integer)
......... CODE HERE.....
Private Sub IncrementRefCount(ByVal entity As ILifeTimeManaged)
Dim prevCount As Integer
''# if we have no reference entry, add one and set its count to 1
If Not RefCount.TryGetValue(entity, prevCount) Then
RefCount.Add(entity, 1)
Else
''# otherwise increment its count by 1
RefCount.Item(entity) = prevCount + 1
End If
End Sub
I find a corresponding dictionary entry then increment the int stored in the value, or add a new dictionary entry.
Is it a bad idea to use a pointer to the dictionary value? Then I can avoid the second key lookup when I already have gotten the value. How would you implement it? Is this even possible in .NET4?
Can I do it using IntPtr do you think? http://msdn.microsoft.com/en-us/library/system.intptr.aspx
RefCount.Item(entity) = prevCount + 1