2009-04-09 C#のconst PG C#のconstには参照型は指定できないらしい。 文字列以外の参照型の const は null と共にのみ初期化できます。 と怒られた。つまり const Message msg = new Message();とかしてもだめ。 この場合は static readonly Message msg = new Message();とする