FSO.Files.FAR3.FAR3Archive.GetAllEntries C# (CSharp) Method

GetAllEntries() public method

Returns the entries of this FAR3Archive as byte arrays together with their corresponding FileIDs.
public GetAllEntries ( ) : byte[]>>.List
return byte[]>>.List
        public List<KeyValuePair<uint, byte[]>> GetAllEntries()
        {
            List<KeyValuePair<uint, byte[]>> toReturn = new List<KeyValuePair<uint, byte[]>>();
            foreach (Far3Entry Entry in m_EntriesList)
            {
                toReturn.Add(new KeyValuePair<uint, byte[]>(Entry.FileID, GetEntry(Entry)));
            }
            return toReturn;
        }