使用 WMPLIB 在 VB.NET 中同步 Windows Media Player 设备
WMPLIB 的 MSDN 文档指出,.NET 编程不支持同步到设备,仅支持 C++。
然而,是否有一个简单的包装类或 DLL 可用于在 .NET 程序和必要的 C++ 代码之间进行接口?
或者是否有更好的方法使用 VB.NET 将文件同步到设备?所有设备都适合/兼容简单的 filesystem.copyfile 吗?
The MSDN documentation for WMPLIB states that syncing to device is not supported in .NET programming, only C++.
Is there, however, a simple wrapper class or DLL that can be used to interface between a .NET program and the nescessary C++ code?
Or is there a better way to sync files to a device using VB.NET? Are all devices suited/compatible with just a simple filesystem.copyfile ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有任何现有的包装器。也许其他人可以帮忙解决这个问题。
您尝试过 C++/CLI 吗?您可以编写一个可以与 C/C++ 互操作的简单 C++/CLI 项目,但其功能可以从其他 .NET 语言中看到,就像 C# 或 VB.NET 一样。我们已经在使用 C++/CLI 包装 C++ 代码方面取得了很多成功,我推荐它。
I don't know of any existing wrapper. Maybe others can help out with that.
Have you tried C++/CLI? You can write a simple C++/CLI project that can interop with C/C++, but its functions are visible from other .NET languages, just like C# or VB.NET. We've had a lot of success wrapping C++ code using C++/CLI, I recommend it.