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 ?

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

what is entity graph in entity framework?

1130


how do you truncate a table using entity data model?

1170


Mention the core components of .net framework?

987


Why to use '{resource}.axd/{*pathInfo}' in routing in ASP.Net MVC?

2713


How we can invoke child actions in ASP.Net MVC?

1115


What is page life cycle?

988


Can I set the unlimited length for "maxjsonlength" property in config?

1018


What is asp net framework?

970


Where is tempdata stored?

964


What is action methods in web api?

1131


What is the role of the jit compiler in .net framework?

1109


In which assembly is the mvc framework defined?

1028


When will the .net framework 3.0 be released?

959


Which is the default http method for an action method?

990


How can you return string result from Action in ASP.Net MVC?

1052