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.


_______________________________________________
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to