1234567891011121314151617181920212223242526 |
- using Aitex.Core.RT.Log;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.Utilities
- {
- public class IOVariableDictionaryUtil
- {
- public static bool AllIoVariableInitialized(eEvent eEventId,string module, Dictionary<string, bool> variableInitializeDic)
- {
- foreach (string item in variableInitializeDic.Keys)
- {
- if (!variableInitializeDic[item])
- {
- return false;
- }
- }
- return true;
- }
- }
- }
|