Added some examples of properties from Microsoft documentation as test cases.
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/properties
Configuration support will be added in a follow up patch to address whether automatic properties are formatted as
Type MyType { get; set }
or
Type MyType { get; set }
Add a comment illustrating is what is a trivial property accessor.