鉄道経営系ゲーム製作スレッド Ver.7
■ このスレッドは過去ログ倉庫に格納されています
0752名前は開発中のものです。
2010/05/11(火) 21:26:17ID:YkDwEd6N外し忘れていたw
で、>>746の問題解決のためにはごめん、>>746は冗長すぎたので簡潔にすると
[OnDeserialized()]
private void OnDeserializedMethod(StreamingContext context) { // デシリアライズ時に呼ばれる
if (yesterday == null) {
yesterday = new YesterdayTransactionSummary(this);
}
if (lastmonth == null) {
lastmonth = new LastMonthTransactionSummary(this);
}
if (lastyear == null) {
lastyear = new LastYearTransactionSummary(this);
}
}
という書き方になる。
つまりnullチェックしてnullなら生成ということ。
■ このスレッドは過去ログ倉庫に格納されています