I am trying to get the start and end line of classes. I am using the tree.GetLineSpan(span, false).EndLinePosition.Line but do not get a result. I do get a result for tree.GetLineSpan(span, false).StartLinePosition.Line.
The EndLinePosition.Line works for a MethodDeclaration though.
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
}
class MyClass
{
class MyClass1
{
}
}
}
}