示例#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;
 }