接口

来源:互联网 发布:virtual安装ubuntu 编辑:程序博客网 时间:2024/04/29 23:22

可以把每个接口都理解为是一个“契约”,其中约定了服务方所需提供的一组功能。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;namespace Csharp基础1{    interface Play    {         void Play();    }    class Program:Play    {        public void Play()    {        Console.WriteLine("Hello A");    }        static void Main(string[] args)        {            Program newWeb = new Program();            newWeb.Play();            Console.Read();        }    }}


0 0
原创粉丝点击