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
            {

            }   
        }
    }
}
link|improve this question

71% accept rate
What API are you using to parse your C# code? – C Johnson Dec 4 '11 at 3:53
feedback

1 Answer

up vote 0 down vote accepted

What do you mean by "doesn't return a result"? Also, what span are you passing in? Can you email me so

link|improve this answer
My apologies. I was going to email you the code and in looking at it, I found I was not passing the correct info. It works as desgined. Thanks Doug – Doug Finke Dec 5 '11 at 0:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.