Select from following answers:- True
- False
- Maybe
- All Above
True, it is not possible for one structure to inherit functionality from another structure or class.
For example :-
struct structure2 : structure1
{
string name;
public void display()
{
throw new NotImplementedException();
}
}
Try to compile the above code and you will get an error.
Show Correct Answer
|
Alert Moderator