Exemplo n.º 1
0
        public ElementType GetArrayElementType()
        {
            if (!IsArray)
            {
                throw new InvalidOperationException("Value is not an array.");
            }

            ElementType type;

            ComArrayValue.GetElementType(out type);
            return(type);
        }