Question:You write the following class. Public Class HomePage Public CurrentHeadlines As StringBuilder Private WelcomeMessage As String Dim Stocktickers As Array Dim PriorityList As Dictionary(Of Int32, String) End Class You need to generate a type library for this class. The type library will be used by unmanaged code. Which member should you update?
A Dim PriorityList As Dictionary(Of Int32, String)
B Public CurrentHeadlines As StringBuilder
C Private WelcomeMessage As String
D Dim Stocktickers As Array
+ AnswerA
+ Report