コード例 #1
0
ファイル: Emit.LoadArgument.cs プロジェクト: 5l1v3r1/Sigil-1
 /// <summary>
 /// Loads the argument at the given index (starting at 0) for the current method onto the stack.
 /// </summary>
 public Emit LoadArgument(ushort index)
 {
     InnerEmit.LoadArgument(index);
     return(this);
 }