码迷,mamicode.com
首页 > Windows程序 > 详细

C# DataTable扩展方法

时间:2018-08-25 14:06:21      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:总结   als   class   null   row   tab   false   note   code   

在日常搬砖中,总结了一些简单的扩展方法。

        public static bool IsNullOrEmpty(this DataTable dt)
        {
            return dt == null || dt.Rows.Count <= 0;
        }
        public static bool IsNotEmpty(this DataTable dt)
        {
            return dt.IsNullOrEmpty() == false;
        }

 

C# DataTable扩展方法

标签:总结   als   class   null   row   tab   false   note   code   

原文地址:https://www.cnblogs.com/kikyoqiang/p/9533393.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!