Ejemplo n.º 1
0
        public uint GetArrayElementCount()
        {
            if (!IsArray)
            {
                throw new InvalidOperationException("Value is not an array.");
            }

            uint count;

            ComArrayValue.GetCount(out count);
            return(count);
        }