摘要:
public static class JsonSplitExtention { public static bool IsJson(this string json) { return JsonSplit.IsJson(json); } } public class JsonSplit {... 阅读全文
摘要:
https://www.jianshu.com/p/af6eb8d3d4bf 首先看一段程序: using System; class Program { static void Main(string[] args) { string a = "hello world"; string b = a 阅读全文