https://bugzilla.novell.com/show_bug.cgi?id=342536#c1





--- Comment #1 from Alexander Tyutik <[EMAIL PROTECTED]>  2007-11-17 13:10:33 
MST ---
Sorry, code of first class is incorrect. correct class is next:

public class GenericBusinessClass
{
        private int id;

        public int Id
        {
                get
                {
                        return id;
                }
                set
                {
                        id = value;
                }
        }

        protected GenericBusinessClass(int id)
        {
                this.id = id;
        }
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to