zoukankan      html  css  js  c++  java
  • C#对象序列化笔记

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Runtime.Serialization;
    using System.Runtime.Serialization.Json;
    using System.IO;
    
    namespace BIMTClassLibrary
    {
        /// <summary>
        /// 获取用户使用推荐审稿人的信息
        /// wuhailong
        /// 2016-08-19
        /// </summary>
        public class ReviewerPostEntity
        {
            [DataMember(Name = "userId", IsRequired = false, Order = 0)]
            public string userId = string.Empty;
            [DataMember(Name = "kwTitle", IsRequired = false, Order = 0)]
            public string kwTitle = string.Empty;
            [DataMember(Name = "kwAbstr", IsRequired = false, Order = 0)]
            public string kwAbstr = string.Empty;
            [DataMember(Name = "kwKeyword", IsRequired = false, Order = 0)]
            public string kwKeyword = string.Empty;
            [DataMember(Name = "readers", IsRequired = false, Order = 0)]
            public List<ReviewerInfo> readers = null;
            [DataMember(Name = "createTime", IsRequired = false, Order = 0)]
            public string createTime = string.Empty;
    
            public ReviewerPostEntity(string userId, string kwTitle, string kwAbstr, string kwKeyword, List<ReviewerInfo> readers, string createTime)
            {
                try
                {
                    this.userId = userId;
                    this.kwTitle = kwTitle;
                    this.kwAbstr = kwAbstr;
                    this.kwKeyword = kwKeyword;
                    this.readers = readers;
                    this.createTime = createTime;
                }
                catch (Exception)
                {
                    throw;
                }
            }
    
            public ReviewerPostEntity( ) { }
    
            public override string ToString()
            {
                DataContractJsonSerializer dataContractSerializer = new DataContractJsonSerializer(this.GetType());
                using (MemoryStream ms = new MemoryStream())
                {
                    dataContractSerializer.WriteObject(ms, this);
                    return Encoding.UTF8.GetString(ms.ToArray());
                }
            }
        }
    }
    

      

  • 相关阅读:
    【思维】P5461 赦免战俘——两种有趣思路,分析推导
    雍正剑侠图人物关系图(2014-11-24 更新)思海整理
    h5 jq实现瀑布流
    jQuery省级联动
    jQuery 分页kkpager
    js jquery 常用函数集合
    h5 富文本编辑器
    向上取整,向下取整,四舍五入等
    前端常用的三大缓存
    jquery 跳转,刷新,返回,判断浏览器型号
  • 原文地址:https://www.cnblogs.com/wuhailong/p/5787495.html
Copyright © 2011-2022 走看看