Mono 的日期时间序列化
如果您在 Linux 上使用 Mono Remoting,那么针对 Mono 和 .NET Remoting 之间的 DateTime 编组不兼容性的解决方法是什么?
我在 Windows 上使用 WinForms,使用 .NET 2.0 运行时,在 Linux 上使用 Mono 进行远程处理。 我还不能在两端使用 Mono 运行时,因为 Mono 的 DataGridView 还不能工作。
[更新]
问题发布时我使用了 Mono 1.9。 我现在使用 Mono 2.4,它的 DateTime 现在与 .NET 兼容。 感谢 Miguel de Icaza、他的团队和 Novell
if you uses Mono Remoting on Linux, what's your work-around for DateTime marshalling incompatibility between Mono and .NET Remoting?
i'm using WinForms on Windows using .NET 2.0 runtime, using Remoting on Linux using Mono. i cannot yet use Mono runtime on both ends as Mono's DataGridView isn't yet working.
[UPDATE]
i used Mono 1.9 when the question was posted. i'm using Mono 2.4 now, its DateTime is now compatible with .NET. kudos to Miguel de Icaza, his team and Novell
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为更好的解决方案是重构代码,因此不要使用(但支持不足的)远程处理,而是使用 Web 服务。 IIRC 完全支持大多数基本数据类型的 XML 序列化; 在某些情况下,更适合架构(尤其是服务器-客户端架构)。
I think a much better solution would be refactoring the code, so instead of the (yet under-supported) remoting, use web services. XML serialization of most basic data types are IIRC fully supported; and in certain circumstances, fits the architecture much better (especially server-client architectures).
使用测试用例提交错误。
File a bug with a test case.