forum

Home / DeveloperSection / Forums / Find in List<t> and return boolean if found

Find in List<t> and return boolean if found

Anonymous User209929-Jan-2014

public class MyType

{

    public string MyName;

    public string MyTown;

    public string MyJob;

}

I have a List of this type:

List<MyType> myVar = new List<MyType>()

Now I want to return a boolean based on this. So for example: Does myVar contain MyName = "Bob" and MyJob = "Taxi Driver"

I have managed to return all with a name of "Bob"

var e = myVar.Where(x => x.MyName== "Bob").ToList();

But I want to do something like:

bool mExists = (myVar.Where(x => x.MyName== "Bob" && MyJob="Taxi Driver").Count > 0) ? true : false;

Is this possible?


Updated on 29-Jan-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By