public void read(BinaryReader r)
{
this.Count = r.ReadInt32();
this.NLinkedDifficulties = new NLinkedDifficulty[this.Count]; for (int i = 0; i < this.Count; i++)
{
NLinkedDifficulty obj = new NLinkedDifficulty(); obj.read(r); this.NLinkedDifficulties[i] = obj;
}
}