I have an object like this:
public class SavedFileInfo
{
public String Address;
public Int32 DataPort;
public Int32 AudioPort;
public String Description;
public String Filename;
}
And I have an array of those objects like this... SavedFileInfo[] mySFI;
How can I now get an array of the Filename field (such as string[] filenames) from within my collection of the SavedFileInfo objects?