码迷,mamicode.com
首页 > Windows程序 > 详细

c# 显式实现接口的方法

时间:2017-10-01 11:11:20      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:gen   实现   main   binary   ogr   format   new   interface   pre   

using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Serialization.Formatters.Binary;
using System.Text;


namespace ConsoleApplication2
{
    interface IBbb
    {
        void Fb();
    }

    class Aaa : IBbb
    {
        public void Fb()
        {
            Console.WriteLine("aaa fb");
        }

        void IBbb.Fb()
        {
            Console.WriteLine("ibbb fb");
        }
    }

    internal class Program
    {
        public static void Main(string[] args)
        {
            IBbb oa = new Aaa();
            oa.Fb();
            Aaa oc=new Aaa();
            oc.Fb();
        }


        
    }
}

 

c# 显式实现接口的方法

标签:gen   实现   main   binary   ogr   format   new   interface   pre   

原文地址:http://www.cnblogs.com/zhaoxianglong1987/p/7616710.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!