Hi,
In an old thread, it was explained how to replace a value in an array element. However, it does not work for me. Running my VS 2008 debugger, I can see that all variables are set and accurate, but the Array.Replace does not work. Any ideas?
Here's my code:
if (values[i].ToString() == casprID && values[i + 1] == msNo)
{
values[i] = values[i].Replace(values[i].ToString(), casprID.ToString());
}
Thank you,
jharter