クラスをリバース エンジニアリングすると、次のようになります。
public Nullable<bool> Correct { get; set; }
public Nullable<bool> Response { get; set; }
私はコーディングしました:
public bool? Correct { get; set; }
public bool? Response { get; set; }
これら2つに違いがあるかどうか誰かに教えてもらえますか。以前は見たNullable<bool>
ことがなく、なぜ「bool」を作成しないのかわかりません。
注: コードを bool に変更しましたか? ジョンのコメントに応えて