I saw something like the following somewhere, and was wondering what it meant. I know they are getters and setters, but want to know why the string Type is defined like this. Thanks for helping me.

public string Type { get; set; }
link|improve this question

1  
This is called an Auto-Property, have a look at this: msdn.microsoft.com/en-us/library/bb384054.aspx – Allov Jul 15 '11 at 15:05
This is the definition of a property named "Type", the .NET type of which is System.string. There's nothing more to it. – Jon Jul 15 '11 at 15:05
1  
I think that he might be confusing the naming of the Auto-Property with the Reflection class System.Type. msdn.microsoft.com/en-us/library/system.type.aspx – Fuji Jul 15 '11 at 15:21
feedback

6 Answers

up vote 9 down vote accepted

Those are Auto-Implemented Properties (Auto Properties for short).

The compiler will auto-generate the equivalent of the following simple implementation:

private string _type;

public string Type
{
    get { return _type; }
    set { _type = value; }
}
link|improve this answer
feedback

That is an auto-property and it is the shorthand notation for this:

private string type;
public string Type
{
  get { return this.type; }
  set { this.type = value; }
}
link|improve this answer
... except that the backing field is not accessible. – Vlad Jul 15 '11 at 15:09
1  
... which is why it is called the backing field. – Teoman Soygul Jul 15 '11 at 15:11
1  
Nevertheless, you should be able see it as <Type>k__BackingField with reflection. – Vlad Jul 15 '11 at 15:38
feedback

Its a automatically backed property, basically equivalent to

private string type;
public string Type
{
   get{ return type; }
   set{ type = value; }
}
link|improve this answer
feedback

These are called auto properties.

http://msdn.microsoft.com/en-us/library/bb384054.aspx

Functionally (and in terms of the compiled IL), they are the same as properties with backing fields.

link|improve this answer
Can you still reference the private _type or type within the class, or you just use Type? – mikey Jul 15 '11 at 15:07
No, BUT you can specify the modifier for the auto property: public string Type { get; private set; } – JeffN825 Jul 15 '11 at 15:09
You would be unable to access _type in this case. – Ramhound Jul 15 '11 at 15:10
So in that case this.Type = "foo"; should be OK, but from outside instance.Type = "foo"; will not.. These auto props are definitely a helpful addition to the language. Thanks. – mikey Jul 15 '11 at 15:12
@mikey: correct – JeffN825 Jul 15 '11 at 15:13
feedback

This means that the compiler defines a backing field at runtime. This is the syntax for auto implemented properties.

More Information: Auto-Implemented Properties

link|improve this answer
feedback
public string Type { get; set; } 

Is no different then doing

private string _Type;

public string Type
{    
get { return _Type; }
set { _Type = value; }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.