Example #1
0
        public override float IsMatch(GDMTag tag, MatchParams matchParams)
        {
            GDMFamilyRecord otherFam = tag as GDMFamilyRecord;

            if (otherFam == null)
            {
                return(0.0f);
            }

            float match = GetStrMatch(GetFamilyString(), otherFam.GetFamilyString(), matchParams);

            return(match);
        }