Habanero.BO.ObjectTreeXmlReader.BuildExceptionMessage C# (CSharp) Méthode

BuildExceptionMessage() private static méthode

private static BuildExceptionMessage ( IEnumerable propertyReadExceptions ) : string
propertyReadExceptions IEnumerable
Résultat string
        private static string BuildExceptionMessage(IEnumerable<string> propertyReadExceptions)
        {
            const string crlf = @"\r\n";
            var exceptionMessage = new StringBuilder("");
            foreach (var propertyReadException in propertyReadExceptions)
            {
                exceptionMessage.Append(propertyReadException);
                exceptionMessage.Append(crlf);
            }
            return exceptionMessage.ToString();
        }