If I have a string that has many lines in it, what is the best way to get the contents of a certain line?
E.g If the string is as follows:
What is the best way to get the contents of line 2 ("Get")?Code:Public Property TestProperty1 As String Get Return _Name End Get Set(value As String) _Name = value End Set End Property




Reply With Quote