public void Load(BinaryReader br) { mHeader = new BlockHeader(); mHeader.Load(br); int transactionCount = br.ReadInt32(); for (int i = 0; i < transactionCount; i++) { Transaction t = new Transaction(); t.Load(br); mTransactions.Add(t); } }