hessiancsharp.io.CStringValueDeserializer.CStringValueDeserializer C# (CSharp) Method

CStringValueDeserializer() public method

Const
public CStringValueDeserializer ( Type type ) : System
type System.Type Type of the objects for serialiazation
return System
        public CStringValueDeserializer(Type type)
        {
            m_type = type;
            m_constructor = m_type.GetConstructor(new Type[]{typeof(String)});
        }
CStringValueDeserializer