private static string ConvertStringCollectionToDelimitedString(System.Collections.ObjectModel.ReadOnlyCollection <string> stringCollection)
        {
            string delimiter = "; ";

            string[] strings = new string[stringCollection.Count];
            stringCollection.CopyTo(strings, 0);
            return(String.Join(delimiter, strings));
        }