Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 336 Bytes

判空不能用&&符号.md

File metadata and controls

16 lines (12 loc) · 336 Bytes

Big Exception !!!!

            if (CurrentRtnDataTable == null && CurrentRtnDataTable.Rows.Count == 0)
            {
                return ret;
            }



### Should like blow
        if (CurrentRtnDataTable == null || CurrentRtnDataTable.Rows.Count == 0)
        {
            return ret;
        }