I have two classes, named Post and Question. Question is defined as:
public class Question : Post
{
//...
}
My Question class does not override any members of Post, it just expresses a few other ones.
What I want to accomplish
I have an object of type Post, whose members are populated. Now, I want to convert it into a Question, so that I can add values for those few other members.
This is my current code, using an explicit cast conversion:
Post postToQuestion = new Post();
//Populate the Post...
Question ques = (Question)postToQuestion; //--> this is the error!
//Fill the other parts of the Question.
Problem
I am getting an InvalidCastException. What am I doing wrong?