using System; namespace InABox.Mobile { public class StringArrayToStringConverter : UtilityConverter { protected override string Convert(string[] value) { return value != null ? String.Join("\n", value) : ""; } protected override string[] Deconvert(string value) { return value != null ? value.Split('\n') : new String[] { }; } } }