Ankit Nandekar
What is the different between class and structure
Posted by Ankit Nandekar in OOP | Others on Mar 25, 2011
0
Do you know the answer for this question? Post it below.
Guest


1. Classes are reference types and structs are value types. So in other words class will be allocated on a heap and structs will be allocted on the stack.

2. You cannot have instance Field initializers in structs.But classes can have
example:
class MyClass1
{
int myVar =10; // no syntax error.
public void MyFun( )
{
// statements
}
}
struct MyStruct1
{
int myVar = 10; // syntax error.
public void MyFun( )
{
// statements
}
}
3. Classes can have explicit parameterless constructors. But structs cannot have
4. Classes must be instantiated using the new operator. But structs can be
5. Classes support inheritance.But there is no inheritance for structs.
( structs don’t support inheritance polymorphism )
6. Since struct does not support inheritance, access modifier of a member of a struct cannot be protected or protected internal.11. A class is permitted to declare a destructor.But a struct is not
7. classes are used for complex and large set data. structs are for simple data structures.

See my 21 important .NET interview questions and answers

Posted by Shivprasad on Mar 26, 2011
Sponsored by
Team Foundation Server Hosting
Become a Sponsor
PREMIUM SPONSORS
  • The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
    Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites - Click Here!
Sponsored by
Team Foundation Server Hosting
Become a Sponsor
PRIVACY POLICY | TERMS & CONDITIONS | SITEMAP | CONTACT US | REPORT ABUSE © 2011 C# Corner. All contents are copyright of their authors.