I'm trying to read the lines of a richtextbox into a string array but no matter how hard i try i keep getting a stackoverflow exception. This is what I currently have (Notes is the name of my Richtextbox):

Code:
Dim newarr() As String = Notes.Lines
Before that I tried:

Code:
Dim newarr() As String = Notes.Text.Split(Environment.NewLine)
And also:

Code:
Dim newarr() As String = Notes.Text.Split(vbCrlf)
Nothing I try is working!! Where am I going wrong???