我正在使用 Visual Studio.net、Visual Basic 并且我有一个问题。如果我的字符串中有很多行,那么获取某行内容的最佳方法是什么?例如,如果字符串如下:
Public Property TestProperty1 As String
Get
Return _Name
End Get
Set(value As String)
_Name = value
End Set
End Property
获取第 2 行(“Get”)内容的最佳方法是什么?