PrintIndirect() private méthode

Prints a string, or calls a routine, when an indirect node is encountered in a compressed string.
private PrintIndirect ( uint address, uint argCount, uint argsAt ) : void
address uint The address of the string or routine.
argCount uint The number of arguments passed in.
argsAt uint The address where the argument array is stored.
Résultat void
Exemple #1
0
 public override void HandleNextChar(Engine e)
 {
     e.PrintIndirect(
         dblIndirect ? e.image.ReadInt32(address) : address,
         argCount, argsAt);
 }
Exemple #2
0
 public override void HandleNextChar(Engine e)
 {
     e.PrintIndirect(
         dblIndirect ? e.image.ReadInt32(address) : address,
         argCount, argsAt);
 }