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 |
Is array a list?
How long does it take to learn c# for unity?
What is a dictionary in c#?
What is the difference between list and array in c#?
What is datareader c#?
What are fields in c#?
How do you implement Inheritance in dot net ?
Explain the difference between a struct and a class?
update data in an xml file which resides in solution itself, using silverlight 4.0
What is overloading with example?
How does dependency injection work c#?
What to implement on my class Finalize or IDisposable