Hi
i have the following source in VB.NET
txtKSRServer.Te xt = m_SetupData.Cus tomProperties["Servername "].Value
' (SetupData = interface)
how can i read the value from ["Servername "] in C#
i tried it with this
this.txtKSRServ er.Text = (string)
m_SetupData.Cus tomProperties.G etType().Invoke Member("Servern ame",
BindingFlags.De fault | BindingFlags.Ge tProperty, null, m_SetupData, new
object [] {});
but i always get en exception. :o(
Could someone help me
Many thanks
Walter
i have the following source in VB.NET
txtKSRServer.Te xt = m_SetupData.Cus tomProperties["Servername "].Value
' (SetupData = interface)
how can i read the value from ["Servername "] in C#
i tried it with this
this.txtKSRServ er.Text = (string)
m_SetupData.Cus tomProperties.G etType().Invoke Member("Servern ame",
BindingFlags.De fault | BindingFlags.Ge tProperty, null, m_SetupData, new
object [] {});
but i always get en exception. :o(
Could someone help me
Many thanks
Walter
Comment