How to find objects in Generics with List.Find() method
I’ve been looking for help on how to find objects in Generics with List.Find() method …. and … take a look what I have found.In the follow example, I created a simple class: public class Person{ private int _id; private string _name; public int ID { get{ return _id;} set{ _id = value;}} public int Name { get{ return _name;} set{ _name= value;}} public Person(int id, string name) { _id = id; _name = name; }} In the example, there’s a simple class with two private attributes. Now we’re going to create a typed List of this object and take … Continue reading How to find objects in Generics with List.Find() method