FSO.Files.Formats.OTF.OTFFile.GetTable C# (CSharp) Method

GetTable() public method

Gets an OTFTable instance from an ID.
public GetTable ( int ID ) : OTFTable
ID int The ID of the table.
return OTFTable
        public OTFTable GetTable(int ID)
        {
            return Tables.FirstOrDefault(x => x.ID == ID);
        }