2010年2月16日火曜日

Interfaceを宣言、実装して使用してみる。

using System;

// Interfaceを宣言
interface ISampleInterface
{
    void printOut();
}

// Interfaceを実装
class SampleClass : ISampleInterface
{
    public void printOut()
    {
        Console.WriteLine("Interface");
    }
}

class MainClass
{
    static void Main()
    {
        SampleClass sample = new SampleClass();

        // 出力値:Interface
        sample.printOut();
    }
}

0 コメント:

コメントを投稿