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 ClassB Class Products
Inherits Dictionary(Of String, Product)
End ClassC Class Products
Inherits StringDictionary(Of String, Product)
End ClassD Class Products
Inherits Dictionary
End Class
+ AnswerB
+ Report