• C# #region 字符串轉實例


    首先聲明一個class類:

      public class codestr

    {
    public int code { get; set; }
    public bool success { get; set; }
    public string message { get; set; }
    public string data { get; set; }
    }

    直接使用對象:

    引用 using Newtonsoft.Json;

    public void mail()

    {

      codestr code = new codestr();

      code =FromJSON<codestr>("{"code":200,"success ":true,"message ":null,"data ":null}"); //字符串轉實例 格式以大括號{}加入

    }

     

    #region 字符串轉對象list
    public static T FromJSON<T>(string input)
    {
      try
        {
          return JsonConvert.DeserializeObject<T>(input);
        }
      catch (Exception ex)
        {
          return default(T);
        }
    }
    #endregion

  • 相关阅读:
    记一次MD5妙用
    go执行外部应用
    Go语言中的HTTP
    Go语言中的UDP应用
    Go学习
    Element-ui学习使用
    Vue学习
    BootCDNApi使用记录
    jquery.easypiechart.js简介
    jquery.gritter.js简介
  • 原文地址:https://www.cnblogs.com/popo1/p/13614461.html
Copyright © 2020-2023  润新知