0

タイプISetのプロパティを持つクラスがあります。そのクラスをシリアライズしたいのですが、ISet の使い方がわかりません。

[Serializable]    
class Question: ISerializable
{
  private int id;
  public int Id
  {
    get{return id;}
    set{id = value;}
  }

  private ISet answerChoice;
  public ISet AnswerChoices
  {
   get{return answerChoices;}
   set { answerChoices = value; }
  }

  public Question(SerializationInfo info, StreamingContext context)
  {
       id = info.GetInt32("id");
       answerChoices = //how to deserialize this collection
  }

  void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
  {
       info.AddValue("id", id);
       info.AddValue("ac", answerChoices);
  }
}

同じものを作ろうとする人はいますか?私を助けてください。

4

1 に答える 1

1

どうですか:

info.GetValue("ac",...);

また、追加の値を追加しないのに、なぜ独自のシリアル化を実装するのですか?

于 2010-08-26T12:05:42.423 に答える