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