In your example its making the properties as read only, but there are other uses as well.
public string Text { get { return _text; } }
If you want to do some operation internally on the return_text and then return it against proeperty Text you could something like.
public string Text { get { return _text.ToUpper(); } }
This is field Encapsulation
Encapsulation is sometimes referred to as the first pillar or
principle of object-oriented programming. According to the principle
of encapsulation, a class or struct can specify how accessible each of
its members is to code outside of the class or struct. Methods and
variables that are not intended to be used from outside of the class
or assembly can be hidden to limit the potential for coding errors or
malicious exploits.
Consider the following example:
// private field
private DateTime date;
// Public property exposes date field safely.
public DateTime Date
{
get
{
return date;
}
set
{
// Set some reasonable boundaries for likely birth dates.
if (value.Year > 1900 && value.Year <= DateTime.Today.Year)
{
date = value;
}
else
throw new ArgumentOutOfRangeException();
}
}
In this example there is a private field date which is exposed publicly through property Date. Now if you want to set the boundary for date then you can see the set part of the property.
ReadOnlyCollection<string>, not astring[]. – Eric Lippert Apr 24 '12 at 18:52