C++/CLI:如何将模板数组声明为方法参数
我是 C++/CLI 的新手。对于头文件和源文件,托管 C++/CLI 中的以下 C# 代码等效于什么?
public static bool ArrayEquals<T>(T[] a, T[] b)
{
return true;
}
I am a newbie to C++/CLI. What is the equivalent of the following C# code in managed C++/CLI for both the header and source file?
public static bool ArrayEquals<T>(T[] a, T[] b)
{
return true;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是源文件的内容:
Here is the content for the source file:
我尝试了以下方法并不断收到链接器错误。现在我知道,应该使用关键字 generic 来代替。谢谢劳伦特! :)
I tried the following and kept getting linker errors. Now I know, the keyword generic should be used instead. Thanks Laurent! :)