问题是C ++ / CLI没有typeof
运算符。那么如何将以下C#代码翻译成C ++ / CLI?
[ExpectedException (typeof(ArgumentOutOfRangeException))]
答案 0 :(得分:1)
这是你可能正在寻找的那条线:
[ExpectedException(ArgumentOutOfRangeException::typeid)]
答案取自How do I use ExpectedException in C++/CLI NUnit tests?,如果您在线搜索,也会得到答案。