ME3Explorer.Packages.ME2Package.getEntry C# (CSharp) Method

getEntry() public method

gets Export or Import entry
public getEntry ( int index ) : IEntry
index int unreal index
return IEntry
        public IEntry getEntry(int index)
        {
            if (index > 0 && index <= ExportCount)
                return exports[index - 1];
            if (-index > 0 && -index <= ImportCount)
                return imports[-index - 1];
            return null;
        }