R
raulavi
thanks for any help
vs2008 c# linQ
ArrayList lines = new ArrayList();
(having many lines on this arraylist)
how to replace words and create an new arraylist ?
this is my current code
foreach (string line in lines)
{
ArrayList l2 = new ArrayList();
string l;
l = line.Replace("whatTable", tableName);
l = l.Replace("whatForm", formName);
l2.add(l);
}
vs2008 c# linQ
ArrayList lines = new ArrayList();
(having many lines on this arraylist)
how to replace words and create an new arraylist ?
this is my current code
foreach (string line in lines)
{
ArrayList l2 = new ArrayList();
string l;
l = line.Replace("whatTable", tableName);
l = l.Replace("whatForm", formName);
l2.add(l);
}