i got an error massage cs0246: The type or namespace name 'StringCollection' could not be found (are you missing a using directive or an assembly reference?)
heres my code:
public static StringCollection GetCountries()
{
StringCollection Countries = new StringCollection();
Countries.AddRange (_countries);
return countries;
}
}
help me for this error thanks..