Deserializing an object for known object types.
Inheritance: hessiancsharp.io.AbstractDeserializer
        /// <summary>
        /// Adds basic serializers to the Dictionary<Object, Object>s
        /// </summary>
        /// <param name="type">Type of the instances for de/serialization</param>
        /// <param name="strTypeName">Type name of the instances for de/serialization</param>
        /// <param name="intTypeCode">Type code <see cref="CSerializationConstants"/></param>
        private static void addBasic(Type type, string strTypeName, int intTypeCode)
        {
            m_htSerializerMap.Add(type, new CBasicSerializer(intTypeCode));
            AbstractDeserializer abstractDeserializer = new CBasicDeserializer(intTypeCode);

            m_htDeserializerMap.Add(type, abstractDeserializer);
            m_htTypeMap.Add(strTypeName, abstractDeserializer);
        }