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

      

  • 相关阅读:
    BZOJ3543: [ONTAK2010]Garden
    python初识面向对象
    python装饰器
    python递归函数及二分法查找
    python内置函数及匿名函数
    生成器和生成器函数以及各种推导式
    第一类对象 函数名 变量名
    函数的进阶
    Python初始函数
    Python文件操作
  • 原文地址:https://www.cnblogs.com/wuhailong/p/5787495.html
Copyright © 2011-2022 走看看