I am currently creating UTC DateTime objects using the current idiom
DateTime now = new DateTime(DateTimeZone.UTC);
Is there any way to default so I can create UTC-based DateTime objects using the default constructor so it is more implicit?
DateTime now = new DateTime();