Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 C# 将对象序列化为文件,然后再从我使用 Ruby 语言构建的另一个应用程序中反序列化它?
JSON。
这就是它的用途,我确信两种语言都可以读写。
编辑:我在两秒钟内发现了两件事让你开始:Ruby JSON 库和JSON .NET
如果将它序列化为 XML,那么在 Ruby 中反序列化它应该没有问题。谷歌可以为您指出一个宝石来处理它。
如果您使用 IronRuby,它使用与 c# 相同的 .NET 程序集。如果是这样,那么这个过程应该(理论上)是透明的。