Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between structures and enumeration ?



What is the difference between structures and enumeration ?..

Answer / kirti

Unlike classes, structs are value types and do not require heap allocation. A variable of a struct type directly contains the data of the struct, whereas a variable of a class type contains a reference to the data. They are derived from System.ValueType class.

Enum->An enum type is a distinct type that declares a set of named constants.They are strongly typed constants. They are unique types that allow to declare symbolic names to integral values. Enums are value types, which means they contain their own value, can't inherit or be inherited from and assignment copies the value of one enum to another.

public enum Grade

{

A,

B,

C

}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

Can I add mvc testcases in visual studio express?

0 Answers  


What is main objective of asp.net mvc 4 or what is new in mvc4 ?

0 Answers  


What are the advantages of razor view engine?

0 Answers  


What are the 2 popular asp.net mvc view engines?

0 Answers  


Explain the .net framework.

0 Answers  


What are ajax helpers in mvc?

0 Answers  


What are HTML Helpers, AJAX Helpers in ASP.Net MVC?

0 Answers  


How to change the action name in ASP.Net MVC?

0 Answers  


How to Insert a TextBox value in to Sql database using C#.Net coding

2 Answers  


Explain Model, view and Controllers in Asp.Net MVC?

0 Answers  


mention what is the key advantage of using entity framework or ef?

0 Answers   Microsoft,


How to set the debug mode

1 Answers   4Cplus,


Categories