Click here to Skip to main content
15,891,763 members
Articles / Programming Languages / C#

Using Find in a Generic List

Rate me:
Please Sign up or sign in to vote.
4.06/5 (7 votes)
27 Oct 2008CPOL3 min read 70.7K   999   33  
This article investigates the use of List.Find() when using value and reference types, and how to use it when working with your own custom classes.
using System;
using System.Collections.Generic;
using System.Text;

namespace GenericsFind
{
    class Person : IComparable
    {
        private string _Firstname;

        public string Firstname
        {
            get { return _Firstname; }
            set { _Firstname = value; }
        }

        public Person(string strPar1)
        {
            Firstname = strPar1;
        }

        #region IComparable Members

        public int CompareTo(object obj)
        {
            throw new NotImplementedException();
        }

        public override bool Equals(object obj)
        {
            return this.Firstname == ((Person)obj).Firstname;
            //return base.Equals(obj);
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
South Africa South Africa
I'm a senior software developer from South Africa and have a huge passion for .NET and Microsoft related technologies.

When I'm not having fun figuring out an architecture or class design, you'd probably find me rocking on the drums, running around with my badminton racquet or enjoying another bitter coffee or an ice-cold Amstel at the bar.

Comments and Discussions