開発環境
- Microsoft Windows 7 Home Premium (OS)
- Microsoft Visual C# 2010 Express Edition (IDE)
- 言語: C#
『初めてのC# 第2版』(Jesse Liberty+Brian MacDonald著、日向俊二訳、オライリー・ジャパン、2006年、ISBN978-487311-294-7)の 第13章(インタフェース)13.10(練習問題)、練習13-1を解いてみる。
練習13-1.
コード
using System;
namespace Sample
{
interface IConvertible
{
public string ConvertToCSharp(string str);
public string ConvertToVB(string str);
}
class Tester
{
public void Run()
{
}
static void Main()
{
Tester t = new Tester();
t.Run();
}
}
}
0 コメント:
コメントを投稿