I found a topic on MSDN that talks that yes, this is possible.
I did a test that seems to break this statement:
using System; namespace Test { c
No, it's not possible to make an auto-implemented property readonly. For the page you linked:
with auto-implemented properties, both a get and set accessor are required
A read-only property has NO set accessor.
A property without a set accessor is considered read-only