예제 #1
0
파일: Utils.cs 프로젝트: ikvm/webmatrix
 internal static bool IsChoiceEmpty(DeviceSpecificChoice choice)
 {
     if ((choice != null) && (choice.get_HasTemplates() || ((choice.get_Contents() != null) && (choice.get_Contents().Count != 0))))
     {
         return false;
     }
     return true;
 }