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

GetItemByID() public method

Gets an entry from a FileID.
public GetItemByID ( uint FileID ) : byte[]
FileID uint The entry's FileID.
return byte[]
        public byte[] GetItemByID(uint FileID)
        {
            var item = m_EntryByID[FileID];
            if (item == null)
            {
                throw new FAR3Exception("Didn't find entry!");
            }
            return GetEntry(item);
        }

Same methods

FAR3Archive::GetItemByID ( ulong ID ) : byte[]