托管 C++ 方法命名

发布于 2024-07-04 18:52:02 字数 209 浏览 5 评论 0原文

我正在使用托管 C++ 来实现返回字符串的方法。 我使用以下签名在头文件中声明该方法:

String^ GetWindowText()

但是,当我从 C# 使用此方法时,签名是:

string GetWindowTextW();

如何去掉方法名称末尾的额外“W”?

I'm using managed c++ to implement a method that returns a string. I declare the method in my header file using the following signature:

String^ GetWindowText()

However, when I'm using this method from C#, the signature is:

string GetWindowTextW();

How do I get rid of the extra "W" at the end of the method's name?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

Bonjour°[大白 2024-07-11 18:52:02

要绕过 Windows 头文件的预处理器黑客攻击,请按如下方式声明:

#undef GetWindowText
String^ GetWindowText()

请注意,如果您实际上在代码中使用 Win32 或 MFC GetWindowText() 例程,则需要重新定义宏或将其调用为 GetWindowTextW()

To get around the preprocessor hackery of the Windows header files, declare it like this:

#undef GetWindowText
String^ GetWindowText()

Note that, if you actually use the Win32 or MFC GetWindowText() routines in your code, you'll need to either redefine the macro or call them as GetWindowTextW().

空气里的味道 2024-07-11 18:52:02

GetWindowText 是一个 win32 api 调用,通过 C++ 项目中的宏为 GetWindowTextW 提供别名。

尝试将 #undef GetWindowText 添加到您的 C++ 项目中。

GetWindowText is a win32 api call that is aliased via a macro to GetWindowTextW in your C++ project.

Try adding #undef GetWindowText to you C++ project.

不是托管 c++,而是适用于 .net 平台的 C++/CLI。 一组 Microsoft 对 C++ 的扩展,用于其 .Net 系统。

Bjarne Stroustrup 的常见问题解答 http://www.research.att.com/~bs /bs_faq.html#CppCLI

C++/CLI 不是 C++,不要这样标记它。 发送方

Not Managed c++ but C++/CLI for the .net platform. A set of Microsoft extensions to C++ for use with their .Net system.

Bjarne Stroustrup's FAQ http://www.research.att.com/~bs/bs_faq.html#CppCLI

C++/CLI is not C++, don't tag it as such. Txs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文