Your serialization method should look like this:
public static string SerializeAnObject(Object item) { if (item == null) return null; var stringBuilder = new StringBuilder(); var itemType = item.GetType(); new XmlSerializer(itemType).Serialize(new StringWriter(stringBuilder), item); return stringBuilder.ToString();}
The function above works when I test it like this:
var test = new Flow();var xmlString = SerializeAnObject(test);