Is there an official (ie, FX Cop, Guidance on MSDN, etc) way to organize the Properties, Methods and Events in a class file?
I know this can be seen as a "preference" and I have seen it done many different ways, typically:
Constructor
Properties
Events
Methods, in alphabetically order.
My goal is to have a well organized class file which becomes important as the size of the class file gets rather large. (Therein is a different topic, splitting a class which is too large.) It also becomes important when multiple developers are working together so there is an agreed upon standard.
So I am looking for something "official" I can use as a reference for this.