gpt4 book ai didi

c# - C++/CLI 中 C# 的静态类/方法的等价物

转载 作者:太空狗 更新时间:2023-10-29 22:16:05 26 4
gpt4 key购买 nike

我想在下面的 C# 代码上创建 C++/CLI 包装器。

public static class Helper
{
public static int? GetCodes(string input)
{
// Implementation of the logic.....
return 1;
}
}

最佳答案

public ref class Helper abstract sealed
{
public:
static System::Nullable<int> GetCodes(System::String^ input) { /* impl logic */ }
};

关于c# - C++/CLI 中 C# 的静态类/方法的等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25281037/

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