If I'm not using Auto Properties I like to keep the backing store next to the property. I like private state fields, static values, and constants, next constructors, then properties, followed by instance methods and then static methods. If I have nested classes those either go to the top of the class if they are used by the entire class or right before the group of methods they are used with.
public class MyClass
{
public class MyNestedClass
{
}
// constants
// private state fields
// private static fields
// constructors
// properties
// static properties
// methods
// static methods
// finalizer if required
}