Earl <(E-Mail Removed)> wrote:
> I'm trying to do a cast and I'm not sure where I'm going wrong here. I load
> up the ColorExtIntID column (int) into a list array (no problem there). For
> binding to a 3rd party component, it has to then be cast to a string array.
It can't. A cast doesn't change the contents, it just provides the
compiler with more information about what is present.
You'll need to create a new string array of the same size, then convert
each int to a string.
--
Jon Skeet - <(E-Mail Removed)>
http://www.pobox.com/~skeet Blog:
http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too