Hi,
Ive got a dictionary that is of type (String, object)
I can use the following method to return the object but how do I access and display the properties in the object?
:confused:
Ive got a dictionary that is of type (String, object)
I can use the following method to return the object but how do I access and display the properties in the object?
Code:
Public Function getEMagazine(ByVal magTitle As String) As EMagazine
'Preconditions: magTitle is a key in the dictionary.
'Postconditions: The magazine with key magTitle is returned.
Return fMagazines.Item(magTitle)
End Function