コード例 #1
0
ファイル: Emit.Arithmetic.cs プロジェクト: 5l1v3r1/Sigil-1
 /// <summary>
 /// Pops an argument off the stack, negates it, and pushes the result.
 /// </summary>
 public Emit Negate()
 {
     InnerEmit.Negate();
     return(this);
 }