public void NameTableLinqTest()
        {
            //Alloc
            NameTable nt = new NameTable(header, pf.Bytes);

            //Act
            try
            {
                List <string> TestList = nt.Where(T => T.Length > 5).ToList();
                Assert.IsNotNull(TestList);
            }
            //Assert
            catch (Exception ex)
            {
                Assert.Fail(ex.ToString());
            }
        }