I’ve got a list of objects = { obj1,obj2,obj3 }
Every class of the objects is inherited from the same interface
interface IObjects
class Obj1:IObjects
class Obj2:IObjects
class Obj3:IObjects
And I want to find object of Obj1 class for examp.
How to do it?
You can do so by: