Question:You are creating a custom dictionary class. You want it to be type-safe, using a string for a key and your custom class Product as the value. Which class declaration meets your requirements? - VB.NET 

A Public Class Products2
Inherits StringDictionary
End Class 

B Class Products
Inherits Dictionary(Of String, Product)
End Class 

C Class Products
Inherits StringDictionary(Of String, Product)
End Class 

D Class Products
Inherits Dictionary
End Class 

+ Answer
+ Report
Total Preview: 1398

Copyright © 2024. Powered by Intellect Software Ltd