PageRenderTime 43ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/csToolkit/csToolkit/Helper/IsNullOrEmpty.cs

#
C# | 13 lines | 12 code | 1 blank | 0 comment | 3 complexity | 556673c1c7ec58016e618fa638881845 MD5 | raw file
  1. using System;
  2. using System.Collections;
  3. namespace MikeKappel.Com.CS
  4. {
  5. public static partial class Helper
  6. {
  7. public static bool IsNullOrEmpty(IList list)
  8. {
  9. return list == null || list.Count == 0;
  10. }
  11. }
  12. }