public void ImportTableCopyToTest()
        {
            //Alloc
            ImportTable IT = new ImportTable(header, pf.Bytes);

            Import[] IA = new Import[IT.Count];
            try
            {
                //Act
                IT.CopyTo(IA, 0);
                //Assert
            }
            catch (Exception ex)
            {
                //Assert
                Assert.Fail(ex.ToString());
            }
        }