首页 > 代码库 > C# this用法系列(二) 通过this修饰符为原始类型扩展方法

C# this用法系列(二) 通过this修饰符为原始类型扩展方法

定义一个静态类,类中定义静态方法,方法中参数类型前边加上this修饰符,即可实现对参数类型的方法扩展

示例如namespace Demo{

  // 这里的类必须为静态类
    public static class Json
    {
     // 方法为静态方法    
// this修饰符后边是string类型,即为string类型扩展出了ToJson方法 public static object ToJson(this string Json) { return Json == null ? null : JsonConvert.DeserializeObject(Json); }
     // this修饰符后边类型为object,即为object类型扩展出了ToJson方法
public static string ToJson(this object obj) { var timeConverter = new IsoDateTimeConverter { DateTimeFormat = "yyyy-MM-dd HH:mm:ss" }; return JsonConvert.SerializeObject(obj, timeConverter); } public static string ToJson(this object obj, string datetimeformats) { var timeConverter = new IsoDateTimeConverter { DateTimeFormat = datetimeformats }; return JsonConvert.SerializeObject(obj, timeConverter); } public static T ToObject<T>(this string Json) { return Json == null ? default(T) : JsonConvert.DeserializeObject<T>(Json); } public static List<T> ToList<T>(this string Json) { return Json == null ? null : JsonConvert.DeserializeObject<List<T>>(Json); } public static DataTable ToTable(this string Json) { return Json == null ? null : JsonConvert.DeserializeObject<DataTable>(Json); } public static JObject ToJObject(this string Json) { return Json == null ? JObject.Parse("{}") : JObject.Parse(Json.Replace("&nbsp;", "")); } } public class User { public string ID { get; set; } public string Code { get; set; } public string Name { get; set; } } class Program { static void Main(stringtry { List<User> users = new List<User>new User{ID="1",Code="zs",Name="张三"}, new User{ID="2",Code="ls",Name="李四"} }; // List被扩展出了ToJson方法,用于转化字符串 string json = users.ToJson(); // string类型被扩展出了ToJson方法,用于转化对象 object obj = json.ToJson(); // string类型被扩展出了ToList方法,用于转化List users = json.ToList<User>();
         
          // string类型转化DataTable
          DataTable dt=json.ToTable();
}
catch (Exception ex) { Console.WriteLine(ex); } finally { Console.ReadLine(); } } } }

下一篇,分享this关键字之索引器用法

C# this用法系列(二) 通过this修饰符为原始类型扩展方法