Esempio n. 1
0
		public static int Main ()
		{
			DerivedProtectedExample dpe = new DerivedProtectedExample ();
			if (dpe.Prop != "A")
				return 2;

			return 0;
		}
        public static int Main()
        {
            DerivedProtectedExample dpe = new DerivedProtectedExample();

            if (dpe.Prop != "A")
            {
                return(2);
            }

            return(0);
        }