MyC.Io.commentGetCurrentLine C# (CSharp) Method

commentGetCurrentLine() public method

public commentGetCurrentLine ( ) : int
return int
public int commentGetCurrentLine()
  {
  return curline+1;
  }

Usage Example

Example #1
0
 public void CommentHolder()
 {
     NextInsn(0);
     icur.setIType(IAsm.I_COMMENT);
     LastComment = icur; /* save away this insn loc to store comment */
     icur.setCommentLine(io.commentGetCurrentLine());
 }