why sturcture ? why class?why you prefer structure and in
which cases u go for class?
Answer Posted / supraja
Class
-->It is reference type
-->The values allocated in heap
-->Can have constructors, properties, methods
-->Abstract and sealed are possible
-->We cannot have parameter less constructor
-->We can overload constructors
-->Reference type
-->Supports data members, code members (methods) and events
-->Supports inheritance
-->Preferable when you need to initialize one or more
members upon creation
-->Can have parameterized constructors
-->More flexible, unlimited event handling support
Structure
-->It is value type
-->The values allocated in stack
-->Can have constructors, properties, methods
-->Abstract and sealed are not possible
-->By default public
-->We cannot have parameter less constructor
-->We can overload constructors
-->Value type
-->Supports data members, code members (methods) and events
-->Can not inherit
-->Preferable when you perform large number of operations
on each instance
-->Can not control initialization using structure variable
-->Less flexible, limited event handling support
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What do you mean by “finalize” and “finally” methods in c#?
Expalin the way you implement inheritance by using VB.NET/C#?
Explain the difference between “system.array.clone()” and “system.array.copyto()” in c#?
Why do we need delegates in c#?
What is xml document how do you open it?
Define clr in .net?
What is boolean conditions in c#?
What are the Types of assemblies that can be created in dotnet
What is inheritance c#?
Perfect Example Of While And Do-While Loop In C#.Net ?
What is strongly typed view?
What is asp net c# corner?
Explain the types of comments in c#?
What is iformatprovider in c#?
What is a console operator?