gpt4 book ai didi

c# - 如何从捕获的异常中打印消息?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:40:01 26 4
gpt4 key购买 nike

我有一个非常简单的问题。如果 C++ 程序员可以指导我,我将不胜感激。我想在 C++ dll 中编写下面的 C# 代码。可以指导一下吗?

待翻译的C#代码:

void someMethod{
try
{
//performs work, that can throw an exception
}
catch(Exception ex)
{
Log(ex.Message);//logs the message to a text file
}
}

//can leave this part, i can implement it in C++
public void Log(string message)
{
//logs message in a file...
}

我已经用 C++ 做了类似的事情,但我无法获取 try{}catch(...) 的消息部分。

最佳答案

void someMethod{
//performs work
try
{}
catch(std::exception& ex)
{
//Log(ex.Message);//logs the message to a text file
cout << ex.what();
}
catch(...)
{
// Catch all uncaught exceptions
}

But use exceptions with care . Exceptions in C++

关于c# - 如何从捕获的异常中打印消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5282577/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com