Пример #1
0
 private RawFileElement LoadRawFile(RawFile_v1 sRaw)
 {
     return(new RawFileElementImpl
     {
         Architecture = sRaw.Architecture,
         BaseAddress = sRaw.Base,
         Description = sRaw.Description,
         EntryPoint = LoadEntryPoint(sRaw.Entry),
         Environment = sRaw.Environment,
         Name = sRaw.Name,
     });
 }
Пример #2
0
 private RawFileDefinition LoadRawFile(RawFile_v1 sRaw)
 {
     return(new RawFileDefinition
     {
         Architecture = sRaw.Architecture,
         BaseAddress = sRaw.Base,
         Description = sRaw.Description,
         EntryPoint = LoadEntryPoint(sRaw.Entry),
         Environment = sRaw.Environment,
         Loader = sRaw.LoaderType,
         Name = sRaw.Name,
     });
 }