I've found this all over the place in this code:
public enum Blah: int
{
blah = 0,
blahblah = 1
}
Why would it need to inherit from int? Does it ever need to?
|
I've found this all over the place in this code:
Why would it need to inherit from int? Does it ever need to? |
|||
|
According to the documentation:
So, no, you don't need to use int. It would work with any integral type. If you don't specify any it would use int as default and it's this type that will be used to store the enumeration into memory. |
|||
|
|
|
Enums are implicitly backed by integers. You can also create enums that are backed by other intergral types, such as |
|||
|
|
|
You don't need to, it's implied. According to MSDN:
This means you could use Also, setting the values the way you have described (blah=0, blahblah=1), while redundant, is OK, since, according to the C# Specification
|
|||
|
|
|
It's more useful when you want to use something else ( |
|||
|
|
|
it gives it a numeric value, that is all, as far as i know |
|||
|
|
You do not need to inherit as the base type of an Enum is by default, int. http://msdn.microsoft.com/en-us/library/sbbt4032(v=vs.71).aspx
|
|||
|
|
|
You don't need to inherit from |
|||
|
|
|
An enum "member" can have an underlying "value". The inheritance from int tells you what type the value will take. |
|||
|
|
this., but you EDIT: almost never need to writeprivate. – SLaks Jun 14 '11 at 19:50