private static void GEDCOMListTest21(GEDCOMIndividualRecord iRec)
        {
            int hash;

            for (int i = 0; i < iRec.Events.Count; i++)
            {
                GEDCOMCustomEvent evt1 = iRec.Events[i];
                hash = evt1.GetHashCode();
            }
        }
        private static void GEDCOMListTest12(GEDCOMIndividualRecord iRec)
        {
            int hash;
            IGEDCOMListEnumerator <GEDCOMCustomEvent> enumer = iRec.Events.GetEnumerator();

            while (enumer.MoveNext())
            {
                GEDCOMCustomEvent evt1 = enumer.Current;
                hash = evt1.GetHashCode();
            }
        }
        private static void GEDCOMListTest23(GEDCOMIndividualRecord iRec)
        {
            int hash;
            GEDCOMList <GEDCOMCustomEvent> events = iRec.Events;

            for (int i = 0, num = events.Count; i < num; i++)
            {
                GEDCOMCustomEvent evt1 = events[i];
                hash = evt1.GetHashCode();
            }
        }