Can a class inherit structure.
Answers were Sorted based on User's Feedback
Answer / ajay
structure are not inherited.Because structure are valutype
and class is reference type.
Is This Answer Correct ? | 15 Yes | 4 No |
Answer / shadab
Actually Sturcture are internally declared as sealed that's
the reason a class can't inherit it...
for more information go url
http://www.shadab-programminghelp.blogspot.com
Is This Answer Correct ? | 5 Yes | 4 No |
Answer / kanan
answer #2 is correct. You can not inherit structure because
it's sealed internally.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ankita
Structures are not inheritable by classes b'coz a structure
is used to create our own data types (user defined data types).
Is This Answer Correct ? | 0 Yes | 1 No |
What is session management in c#?
If a base class has a bunch of overloaded constructors, and an inherited class has another bunch of overloaded constructors, can you enforce a call from an inherited constructor to an arbitrary base constructor?
Can int be null c#?
What is a helper method in c#?
Is string a data type in c#?
What is an inheritance ?Give an example in which inheritance is used?
What is the use of list in c#?
Where static variables are stored?
Why do we use hashtable in c#?
Define c# and list the features.
What is difference between array and arraylist in c#?
What is dao in c#?