2010-04-22 76 views

回答

1

如果你想從那裏你現在調試然後

int lineNumber = (new StackTrace()).GetFrame(1).GetFileLineNumber(); 

我認爲這是你的問題有幫助的編輯控制獲取當前行號。

11

這爲我工作:

this.WordWrap = false; 
int cursorPosition = this.SelectionStart; 
int lineIndex = this.GetLineFromCharIndex(cursorPosition); 
string lineText = this.Lines[lineIndex]; 
this.WordWrap = true;