I see a lot of similar questions but none with a direct answer.  I have a List<ClientEntry>.  I want to access properties in ClientEntry.  My code looks like this: 
class ClientEntry
{
    private string _clientName;
    private string _clientEmail;
    public void ClientEntry(string name, string email)
    {
        this._clientName = name;
        this._clientEmail = email;
    }
    public string ClientName
    {
        get
        {
            return _clientName;
        }
        set
        {
            _clientName = value;
        }
    }
    public string ClientEmail
    {
        get
        {
            return _clientEmail;
        }
        set
        {
            RegexUtilities Validator = new RegexUtilities();
            if (Validator.IsValidEmail(value))
            {
                _clientEmail = value;
            }
        }
    }
}
Later:
private List<ClientEntry> clientList;
I then add a bunch of ClientEntry's to the List.
How can I access the ClientName and ClientEmail properties for items in clientList? Also, how can I check for the existance of a certain ClientName or ClientEmail property within the List? Is this even possible with a list of objects? I know a dict would probably serve better, but I wanted to see if this could be done with a List and a class with properties.
You can use Linq to look for values inside of a list using Any()
Eg.
bool emailExists = clientList.Any(x=>x.ClientEmail == <email>);
To access values, you can use a index accessor if you know it, loop the collection, or use Where() to search it:
var email = clientList[index].ClientEmail
or
foreach (var client in clientList)
{
    var email = client.ClientEmail
}
or
var email = clientList.Where(x=>x.ClientName == <clientName>).FirstOrDefault();
                        you can explore your list as below
 foreach (ClientEntry client in clientList)
  {
    //client.ClientName
    //client.ClientEmail
  }
to find a particular record you can search it as
clientList.Where(p=> p.ClientEmail == "[email protected]").FirstOrDefault();
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With