C# stack traces take the following form:

   at Foo.Core.Test.FinalMethod(Doh doh) in C:\Projects\src\Core.Tests\Test.cs:line 21
   at Foo.Core.Test.AnotherMethod(Bar bar)
   at Foo.Core.Test.AMethod() in C:\Projects\src\Core.Tests\Test.cs:line 6
   at Foo.Core.Test.<>c__DisplayClass7.<SomeAnonDelegate>b__6(Object _) in C:\Projects\src\Core.Tests\Test.cs:line 35

How can I retrieve namespace, class, method, file and line number from each line?

  • Are there any existing classes to do this?
  • If not what would be the the best approach?
  • Regex? How would I greedily match the namespace but leave the class and method?
  • Custom parser?

Would appreciate some ideas and input.

link|improve this question

63% accept rate
Just out of curiosity, to you intend to use this in a production environment? As far as i remember, the stack-trace isn't included in release mode. See msdn.microsoft.com/en-us/library/… which states that all these information are obtained from the debug symbols, which aren't included in the release builder per default. – J. Tihon Feb 28 '11 at 22:15
@J. Tihon, good point, however we include symbol information in our Release builds – chillitom Feb 28 '11 at 22:19
Well, I just didn't want you to go through all the trouble with regex and all, when you can't really use it at the end. – J. Tihon Feb 28 '11 at 22:31
@J. Tihon: Stack traces do emanate from release builds even without symbols, but they are missing line numbers and filenames. – adrianbanks Feb 28 '11 at 22:37
feedback

2 Answers

up vote 8 down vote accepted

If you're getting this from a StackTrace, then you can loop through the StackFrames via GetFrame and call GetMethod, GetFileName, and GetFileLineNumber. Namespace and class can be retrieved from the method.

EDIT
In response to the first comment (unfortunately we get the traces from Exception.StackTrace), you can call the StackTrace(Exception) constructor.

EDIT
I should've linked to this constructor instead -- StackTrace(Exception,bool).

link|improve this answer
Thanks Austin, unfortunately we get the traces from Exception.StackTrace – chillitom Feb 28 '11 at 22:23
@chillitom: I've updated my response. – Austin Salonen Feb 28 '11 at 22:27
2  
Exception.StackTrace is a string, which cannot be passed into the constructor of StackTrace (it doesn't take a string). – adrianbanks Feb 28 '11 at 22:41
@adrianbanks: That is indeed true and while OP said that he got it from Exception.StackTrace, there was nothing stating he doesn't have access to the Exception object (+1 for your comment BTW). – Austin Salonen Feb 28 '11 at 22:46
1  
I take that back, there is an overload which will provide file info also. – chillitom Feb 28 '11 at 22:55
show 1 more comment
feedback

I read the Austin Salonen's answer and it's obvious better, but I've already started with regex. so I'll write it anyway.

Regex r = new Regex(@"at (?<namespace>.*)\.(?<class>.*)\.(?<method>.*(.*)) in (?<file>.*):line (?<line>\d*)");
var result = r.Match(@"at Foo.Core.Test.FinalMethod(Doh doh) in C:\Projects\src\Core.Tests\Test.cs:line 21");
if (result.Success)
{
    string _namespace = result.Groups["namespace"].Value.ToString();
    string _class = result.Groups["class"].Value.ToString();
    string _method = result.Groups["method"].Value.ToString();
    string _file = result.Groups["file"].Value.ToString();
    string _line = result.Groups["line"].Value.ToString();
    Console.WriteLine("namespace: " + _namespace);
    Console.WriteLine("class: " + _class);
    Console.WriteLine("method: " + _method);
    Console.WriteLine("file: " + _file);
    Console.WriteLine("line: " + _line);
}
link|improve this answer
Looks good, I'm glad you posted anyway as you reminded me that C# allows named matches. Out of interest will the namespace match cope with nested namespaces e.g. Ns1.Ns2.Ns3.Class.Method? – chillitom Feb 28 '11 at 22:45
Yes it will, try it. but seems I have a problem when the string doesn't contains all the parts, I mean in and the path. – Homam Feb 28 '11 at 22:47
What if you run this program in Germany with localized .NET runtime? – Lasse V. Karlsen Feb 28 '11 at 23:02
@Lasse V. Karlsen: You're right. But I've answered to a question with an example in English and tagged with regex. I know that my answer isn't good enough but I shared it anyway. – Homam Feb 28 '11 at 23:07
feedback

Your Answer

 
or
required, but never shown

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