我有this post教我pdb文件和stacktrace。
这是密码。

using System;

// https://stackoverflow.com/questions/4474259/c-exception-handling-with-a-string-given-to-a-constructor

class WeekdayException : Exception {
    public WeekdayException(String wday) : base("Illegal weekday: " + wday) {}
}

class TryCatchFinally
{
    public static void Main()
    {
        try
        {
            throw new WeekdayException("thrown by try");
        }
        catch(WeekdayException weekdayException) {
            Console.WriteLine(weekdayException.Message);
            Console.WriteLine(weekdayException.StackTrace);
        }
    }
}

单声道,我跑
dmcs /debug error.cs
mono error.exe

当我删除/debug选项时,得到的消息是相同的。
Illegal weekday: thrown by try
  at TryCatchFinally.Main () [0x00000] in <filename unknown>:0

使用visual studio 2010,我运行
csc /debug error.cs
error

以按预期的行号获取此消息。
Illegal weekday: thrown by try
   at TryCatchFinally.Main() in c:\error.cs:line 15

问:为什么mono没有用mdb文件显示行号?我遗漏了什么吗?

最佳答案

你必须把——调试传给mono。我不知道这是为什么,我以前从没想过。

dmcs /debug error.cs
mono --debug error.exe

10-06 10:32