[Mono-list] Commenting stubbs.
Daniel Carrera
dcarrera@math.toronto.edu
Thu, 2 May 2002 13:18:42 -0400 (EDT)
I have a question about how I should comment-out stubbs. Should I also
comment out the 'namesace' and the class definition?
In other words, should I do this:
namespace System.Windows.Forms {
public class Form : ContainerControl {
//
// --- Public Properties
//
//[MonoTODO]
//public IButtonControl AcceptButton {
// get {
// throw new NotImplementedException ();
// }
// set {
// throw new NotImplementedException ();
// }
//}
}
}
Or this:
//namespace System.Windows.Forms {
// public class Form : ContainerControl {
//
// --- Public Properties
//
//[MonoTODO]
//public IButtonControl AcceptButton {
// get {
// throw new NotImplementedException ();
// }
// set {
// throw new NotImplementedException ();
// }
//}
// }
//}
Daniel.