7
Answers

In C# , Loading of Images and assigning positions to files

Photo of Sriram Ramki

Sriram Ramki

6y
516
1
foreach (string file in files)
{
int pos = file.LastIndexOf("\\"); string fname = file.Substring(pos + 1); listBox1.Items.Add(fname);
}

Answers (7)