what are the differences b/w structure and class?
Answer Posted / purushotham .tella
Structures are Value-Types. This means, the data that they
contain is stored as a stack on the memory. Classes are
Reference-Types, means they are stored as a heap on the memory.
Structures are implicitly derived from a class called
System.ValueType.
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
What is the use of parse in c#?
What is data binding c#?
What is difference between continue and break in c#?
What are handlers in c#?
Explain 'structure padding'?
What is difference between struct and class in c#?
What are the benefits of using generics?
What is the difference between abstraction and encapsulation in c#?
What is the difference between ref & out parameters in c#?
What are desktop applications examples?
Is arraylist type safe in c#?
Which is the best language for desktop application?
So let's say I have an application that uses myapp.dll assembly, version 1.0.0.0. There is a security bug in that assembly, and I publish the patch, issuing it under name myapp.dll 1.1.0.0. How do I tell the client applications that are already installed to start using this new myapp.dll?
How do you create dlls in .NET
What is the extension of c# file?