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