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());
                }
            }
        }
    }
    

      

  • 相关阅读:
    命令行扩展功能
    bash的工作特性及其使用方法
    Linux的管理类命令及其使用方法
    命名规范
    CSS后代选择器可能的错误认识
    两个viewport的故事(第二部分)
    两个viewport的故事(第一部分)
    移动前端开发之viewport的深入理解
    mybatis 详解(五)------动态SQL
    mybatis 详解(四)------properties以及别名定义
  • 原文地址:https://www.cnblogs.com/wuhailong/p/5787495.html
Copyright © 2011-2022 走看看