酒吧.ixx
import <iostream>;
export module bar;
export void hello() {
std::cout << "hello\n";
}
可能的 C# 代码
using bar;
static void Main(string[] args)
{
bar.hello();
}
如何从 C# 调用 bar 模块?
酒吧.ixx
import <iostream>;
export module bar;
export void hello() {
std::cout << "hello\n";
}
可能的 C# 代码
using bar;
static void Main(string[] args)
{
bar.hello();
}
如何从 C# 调用 bar 模块?