blah blah blah is here! blah blah » Close

1
votes
1 answers

Is it a good practise for all classes amd method parameters to use interfaces?

What benefits do I get if I code all my classes and even their method parameters to interfaces?

1
votes
1 answers

How can I check if an object implements an interface?

I am iterating a collection of objects, and I want to check if the object implements a particular interface. If the object does implement the interface, I want to cast it to that type of object and access its properties. Is this possi ...

Feedback