AppSettingsRead er.GetValue method:
Public Function GetValue( _
ByVal key As String, _
ByVal type As Type _
) As Object
In C#, I would invoke this, e.g., with:
myConfigReader. GetValue("param ", typeof(string))
What would I pass for the type parameter in VB.NET?
--
For mail, please use my surname where indicated:
steve@surname.r eno.nv.us (Steve Brecher)
Public Function GetValue( _
ByVal key As String, _
ByVal type As Type _
) As Object
In C#, I would invoke this, e.g., with:
myConfigReader. GetValue("param ", typeof(string))
What would I pass for the type parameter in VB.NET?
--
For mail, please use my surname where indicated:
steve@surname.r eno.nv.us (Steve Brecher)
Comment