Beispiel #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ConceptSerializer{T}"/> class.
        /// </summary>
        public ConceptSerializer()
        {
            ValueType = typeof(T);

            if (!ValueType.IsConcept())
            {
                throw new TypeIsNotAConcept(ValueType);
            }
        }