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

GetAllFAR3Entries() public method

Returns the entries of this FAR3Archive as FAR3Entry instances in a List.
public GetAllFAR3Entries ( ) : List
return List
        public List<Far3Entry> GetAllFAR3Entries()
        {
            List<Far3Entry> Entries = new List<Far3Entry>();

            foreach (KeyValuePair<string, Far3Entry> KVP in m_Entries)
                Entries.Add(KVP.Value);

            return Entries;
        }