タグ

ブックマーク / gushwell.ldblog.jp (1)

  • [デザインパターン]:Gushwell's Dev Notes

    ここに掲載したコードは、『増補改訂版Java言語で学ぶデザインパターン入門 / 結城 浩(著)』に掲載されているサンプルコードをC#に移植したものです。移植後のコードの公開に関しては、結城氏の了解を得ています。 ※当ソースは、Visual C# 2005 Express Editionで動作を確認しています。 ParseExceptionインターフェース using System; namespace Gushwell.DesignPatterns { [Serializable] public class ParseException : System.Exception { public ParseException(string msg) : base(msg) { } } } Nodeクラス using System; namespace Gushwell.DesignPatter

  • 1