StackTrace return 发布模式异常行号错误
StackTrace return wrong line number of exception in release mode
我有一个 User
class 这样的:
public class User
{
public string Name { get; set; }
public string Family { get; set; }
public string Type { get; set; }
}
和Program.cs
文件:
public static void Main()
{
try
{
List<User> users = new List<User>();
users.Add(new User
{
Family = "Zamani",
Name = "Farhad",
Type = "ADY"
});
DoSomething(users);
}
catch (Exception ex)
{
Console.WriteLine(ex.StackTrace);
}
}
public static void DoSomething(List<User> users)
{
var adult = users.Where(a => // line 36
a.Name.ToUpperInvariant() == "Farhad".ToUpperInvariant()
&& a.Family.ToUpperInvariant() == "zam".ToUpperInvariant()
).FirstOrDefault();
(string name, string type) = GetPassengerInfo(GetType(adult.Type), "farhad");//line 41
}
private static (string name, string type) GetPassengerInfo(string v, string d)
{
return (v, d);
}
static string GetType(string type)
{
string result = string.Empty;
switch (type)
{
case "ADT":
result = "Adult";
break;
}
return result;
}
当我运行程序处于debug模式时,Stacktrace
异常显示Line:41
,没问题。
但是当我 运行 通过发布模式的项目时,我在 Stacktrace
中得到了不同的代码行。
在发布模式下显示 Line:36
。
为什么?
Why?
因为在发布模式下,优化器可以内联函数并执行其他操作来更改源代码中的实际行号。
仅输出堆栈跟踪可能没有帮助(恕我直言)。你得到了什么类型的异常?错误信息是什么?它起源于什么方法?根据我的经验,这些对于诊断问题更有帮助。我会将您的异常处理更改为至少 Console.WriteLine(ex)
。这将为您提供所有这些数据 加上 堆栈跟踪。
这个link可能会有帮助。
我有一个 User
class 这样的:
public class User
{
public string Name { get; set; }
public string Family { get; set; }
public string Type { get; set; }
}
和Program.cs
文件:
public static void Main()
{
try
{
List<User> users = new List<User>();
users.Add(new User
{
Family = "Zamani",
Name = "Farhad",
Type = "ADY"
});
DoSomething(users);
}
catch (Exception ex)
{
Console.WriteLine(ex.StackTrace);
}
}
public static void DoSomething(List<User> users)
{
var adult = users.Where(a => // line 36
a.Name.ToUpperInvariant() == "Farhad".ToUpperInvariant()
&& a.Family.ToUpperInvariant() == "zam".ToUpperInvariant()
).FirstOrDefault();
(string name, string type) = GetPassengerInfo(GetType(adult.Type), "farhad");//line 41
}
private static (string name, string type) GetPassengerInfo(string v, string d)
{
return (v, d);
}
static string GetType(string type)
{
string result = string.Empty;
switch (type)
{
case "ADT":
result = "Adult";
break;
}
return result;
}
当我运行程序处于debug模式时,Stacktrace
异常显示Line:41
,没问题。
但是当我 运行 通过发布模式的项目时,我在 Stacktrace
中得到了不同的代码行。
在发布模式下显示 Line:36
。
为什么?
Why?
因为在发布模式下,优化器可以内联函数并执行其他操作来更改源代码中的实际行号。
仅输出堆栈跟踪可能没有帮助(恕我直言)。你得到了什么类型的异常?错误信息是什么?它起源于什么方法?根据我的经验,这些对于诊断问题更有帮助。我会将您的异常处理更改为至少 Console.WriteLine(ex)
。这将为您提供所有这些数据 加上 堆栈跟踪。
这个link可能会有帮助。