Exemplo n.º 1
0
 public PsaFileHelperMethods(PsaFile psaFile, int dataSectionLocation)
 {
     PsaFile             = psaFile;
     DataSectionLocation = dataSectionLocation;
 }
Exemplo n.º 2
0
 public PsaFileParser(string filePath)
 {
     FilePath = filePath;
     (int[] fileHeader, int[] fileContent, int fileSize) = ReadFile(FilePath);
     PsaFile = new PsaFile(fileHeader, fileContent, fileSize);
 }