gpt4 book ai didi

c# - 将确定性路径代码从 C# 转换为 C++

转载 作者:行者123 更新时间:2023-11-30 04:36:09 25 4
gpt4 key购买 nike

有谁知道如何将它(从 C#)转换为 C++?

string location = Path.GetDirectoryName(Assembly.GetAssembly(typeof(ZigbeeCommUSB)).CodeBase);
location = location.Substring(location.IndexOf("\\") + 1);

谢谢。

编辑:附加信息

这是从 C# 转换为原生 C++。如果有另一种方法来获取当前正在执行的可执行文件的文件路径,我愿意接受想法。谢谢。

最佳答案

上述链接中的 Assembly.GetAssembly 示例

Assembly^ SampleAssembly;
// Instantiate a target object.
Int32 Integer1(0);
Type^ Type1;
// Set the Type instance to the target class type.
Type1 = Integer1.GetType();
// Instantiate an Assembly class to the assembly housing the Integer type.
SampleAssembly = Assembly::GetAssembly( Integer1.GetType() );
// Gets the location of the assembly using file: protocol.
Console::WriteLine( "CodeBase= {0}", SampleAssembly->CodeBase );

如果结合以上内容,您可能会更接近您想要做的事情。 如果这将在 native C++ 中完成,您将遇到更多问题,有一个叫做 "Fusion API" 的东西。这可能会帮助您在 GAC 中查找程序集。

关于c# - 将确定性路径代码从 C# 转换为 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4753341/

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