Which ordering is preferred for the override keyword and the access modifer (public, private, etc.) for methods? Both of the following seem to compile and do the same thing:
public override string ToString ()
{
return "access modifier first";
}
override public string ToString ()
{
return "override keyword first";
}
In Java, the order of keywords is typically enforced, so this flexibility seems startling. Apparently this flexibility is in Java, too (static public void main (String [] args) works...).
static+ return type? Because@Overrideis an annotation in Java, so naturally it would come before an entire method declaration.) – BoltClock♦ May 4 '12 at 18:05public override. I'd probably go with that. – climbage May 4 '12 at 18:06