I have following code
lstLanguage.Items.Add(CultureInfo.GetCultureInfo("en-US").NativeName)
lstLanguage.SelectedIndex = 0
When the below code runs
Dim strLanguageCode As String = CType(lstLanguage.SelectedItem, CultureInfo).NativeName
it throws an exception
System.InvalidCastException:
Unable to cast object of type 'System.String' to type 'System.Globalization.CultureInfo'.
What's wrong on the code