如何在可移植类库中序列化一个类?

我在我的asp.net应用程序中使用可移植类库,在部署到Azure时,我的会话状态需要序列化。 来自这个PCL的类没有Seri​​alizableAttribute sins,这在框架子集中是不可用的。 我不能把这些类放在ASP.NET会话中吗?


那么,您可以使用可用于可移植类库的可用第三方序列化程序之一:

  • protobuf-net - 二进制
  • Json.NET
  • 两者都可以在NuGet上使用

    链接地址: http://www.djcxy.com/p/11811.html

    上一篇: How to binary serialize a class in a Portable Class Library?

    下一篇: user.config file not being created but app.config is?