TheBrenda 0 Newbie Poster

Create an array based on the values in another field. Want the array values to change as the original data field value changes.

string creditreport 
string CoAppCreditReportText 
string creditReport = null;
string[] fileContents = { creditReport, CoAppCreditReportText };

creditreport = "ABC"

//I want fileContents[0] to = "ABC". Want fileContents[0] to take the value of creditreport as it changes.