When creating an auto-implemented property, C# generates a member for that property somewhere in the background. I for the life of me can't remember what this is called, or what the naming convention for the member is called. After Googling for a while, I thought it might be an idea to just ask.
Property:
public int Age { get; set; }
My guess (from memory) of the hidden member:
private int i_age;
Edit #1
To clarify, I was looking for the term of the auto generated member, which was answered by Dmitry Bychenko below. The term is "backing field"