Esempio n. 1
0
        } // public struct DEVICEENTRY

        // *************************************************************************************
        public Device(DEVICEENTRY tDeviceEntry)
        {
            devName = tDeviceEntry.strName;
            devID = tDeviceEntry.strID;

            devSharedMemoryOffset = 0;

            tagSet = new List<Tag>();
            nextTagIndex = tagSet.Count; //this will be zero, and the starting index
        }
Esempio n. 2
0
        public Device(DEVICEENTRY tDeviceEntry)
        {
            devName = tDeviceEntry.strName;
            devID = tDeviceEntry.strID;

            devSharedMemoryOffset = 0;

            tagSet = new List<Tag>();
            nextTagIndex = tagSet.Count; //this will be zero, and the starting index
        }