Simpl.Serialization.Types.CompositeType.CanBeCreatedFrom C# (CSharp) Method

CanBeCreatedFrom() public static method

Determines if a simpl composite Type can be created for the given C# TYpe
public static CanBeCreatedFrom ( Type aType ) : bool
aType System.Type The type to consider
return bool
        public static bool CanBeCreatedFrom(Type aType)
        {
            return !CollectionType.CanBeCreatedFrom(aType);
        }