资源简介
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Json
{
///
/// Jsonhelper 的摘要说明
///
public class Jsonhelper
{
///
/// 转换对象为JSON格式数据
///
/// 类
/// 对象
/// 字符格式的JSON数据
public string GetJSON(object obj)
{
string result = String.Empty;
try
{
System.Runtime.Serialization.Json.DataContractJsonSerializer serializer =
new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(T));
using (System.IO.
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3918 2015-04-07 15:51 Json
----------- --------- ---------- ----- ----
3918 1
- 上一篇:C# ORC图像处理
- 下一篇:C# 即时通讯系统源码(仿QQ)(My QQ)
评论
共有 条评论