C#
Hi all,
I pass an object to a method.
I want to cast that object to its specific class so I can perform its own specific methods? How can I do that?
Move( new Cat() );
Move( new Pigeon() );
public void Move(object objectToMove)
{
if(objectToMove== Cat)
{
Cat catObject = objectToMove as Cat;
catObject.Walk();
}
else if(objectToMove== Pigeon)
{
Rat pigeonObject = objectToMove as Pigeon;
pigeonObject.Fly();
}
}

Move()method should be a member of your classes, e.g. you should haveCat.Move()andPigeon.Move(), each of them calling the appropriate private method. Most of the time, when you use theiskeyword, you are doing something unnecessarily nasty. – Groo Nov 3 at 10:40