Esempio n. 1
0
        private static System.Type GetElementType(System.Type type)
        {
            var elementType = ReflectHelper.GetCollectionElementType(type);

            if (elementType == null)
            {
                throw new NotSupportedException("Unknown collection type " + type.FullName);
            }
            return(elementType);
        }