VintaSoft Annotation .NET Plug-in Discussions
Questions, comments and suggestions concerning VintaSoft Annotation .NET Plug-in.
Board index < VintaSoft Imaging < VintaSoft Annotation .NET Plug-in Discussions
public static string SerializeToString(object obj)
{
try
{
XmlSerializer xmlSerializer = new XmlSerializer(obj.GetType());
using (StringWriter stringWriter = new StringWriter())
{
xmlSerializer.Serialize(stringWriter, obj);
return stringWriter.ToString();
}
}
catch (Exception ex)
{
log.Error("Error Serialising object to string", ex);
return string.Empty;
}
}
Error