C # Json serialization and deserialization of a

Source: Internet
Author: User
 public class Jsonserializer {//<summary>//JSON serialized///</summary>//&lt ; Typeparam name= "T" ></typeparam>//<param name= "T" ></param>//&LT;RETURNS&GT;&LT;/R eturns> public static string jsonstringserializer<t> (T t) {DataContractJsonSerializer s            ER = new DataContractJsonSerializer (typeof (T)); using (MemoryStream ms = new MemoryStream ()) {ser.                WriteObject (MS, T); String json = Encoding.UTF8.GetString (Ms.                ToArray ()); Ms.                Close ();            return JSON; }}///<summary>//JSON deserialization///</summary>//<typeparam name= "T" ;</typeparam>//<param name= "JSON" ></param>///<returns></returns> P Ublic static T dejsonserializer<t> (string json) {DataContractJsonSerializer Ser = new DataContractJsonSerializer (typeof (T)); using (MemoryStream ms = new MemoryStream (Encoding.UTF8.GetBytes (JSON))) {Object Obj=ser.               ReadObject (MS); Ms.               Close ();               if (obj = = null) {throw new NotImplementedException ("serialized entity is Null,json:" + JSON);            } return (T) obj; }        }    }

JOSN Serialization and deserialization demo

C # Json serialization and deserialization two

The above is the content of C # Json serialization and deserialization, more relevant content please pay attention to topic.alibabacloud.com (www.php.cn)!

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.