Skip to content

Instantly share code, notes, and snippets.

@phrohdoh
Created June 17, 2014 01:11
Show Gist options
  • Save phrohdoh/294011592b348e5f5dc2 to your computer and use it in GitHub Desktop.
Save phrohdoh/294011592b348e5f5dc2 to your computer and use it in GitHub Desktop.
// sourcePngs is a ListBox with property Items (ListItemCollection)
// A custom list of strings in the end (custom to eto, not to me)
var pngs = sourcePngs.Items;
var temp = new string[pngs.Count];
for (var i = 0; i < temp.Length; i++)
temp[i] = pngs[i].Text;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment