public void ListRefFindTests()
 {
     ListRef<int> first = new ListRef<int>();
     first.Append(12);
     first.Append(24);
     first.Append(36);
     first.Append(48);
     first.Append(60);
     first.Append(72);
     first.Append(84);
     first.Append(96);
     first.Append(108);
     Assert.AreEqual(8, first.Find(108));
 }