Exemple #1
0
 /// <summary>
 /// Create MMAInteger, what is store the position (to be able to read integer from memory)
 /// </summary>
 /// <param name="position"></param>
 /// <returns></returns>
 private AType ReadMMAInteger(long position)
 {
     return(MMAInteger.Create(position, this));
 }
Exemple #2
0
 public static AType Create(long position, MappedFile mappedFile)
 {
     return(MMAInteger.Create(position, mappedFile));
 }