Exemple #1
0
            public static JournalComponent Read(BinaryReader br)
            {
                JournalComponent ret = new JournalComponent();

                ret.Data    = br.ReadStructures <UInt32>(32).ToArray();
                ret.Margin  = br.ReadUInt16();
                ret.Unk1    = br.ReadUInt16();
                ret.Unk2    = br.ReadUInt16();
                ret.Padding = br.ReadUInt16();
                return(ret);
            }
 public JournalComponentTest()
 {
     journalComponent = new JournalComponent(mockServiceProvider.Object);
 }