Exemple #1
0
 public Instruction BoxIfIndexMatches(int index)
 {
     if (index != base._index)
     {
         return(null);
     }
     return(InstructionList.InitImmutableRefBox(index));
 }
 public Instruction BoxIfIndexMatches(int index)
 {
     return((index == _index) ? InstructionList.InitImmutableRefBox(index) : null);
 }