コード例 #1
0
ファイル: Interface.cs プロジェクト: willvin313/SharpOS
        public static uint CMPExplicitImplementation2()
        {
            Class4 c = new Class4();

            if (c.GetNumber() == 72)
            {
                return(1);
            }

            return(0);
        }
コード例 #2
0
ファイル: Interface.cs プロジェクト: willvin313/SharpOS
        public static uint CMPExplicitImplementation()
        {
            Iface2 c = new Class4();

            if (c.GetNumber() == 69)
            {
                return(1);
            }

            return(0);
        }
コード例 #3
0
ファイル: Interface.cs プロジェクト: sharpos/SharpOS
		public static uint CMPExplicitImplementation2 ()
		{
			Class4 c = new Class4 ();

			if (c.GetNumber () == 72)
				return 1;

			return 0;
		}
コード例 #4
0
ファイル: Interface.cs プロジェクト: sharpos/SharpOS
		public static uint CMPExplicitImplementation ()
		{
			Iface2 c = new Class4 ();

			if (c.GetNumber () == 69)
				return 1;

			return 0;
		}