Habanero.BO.ObjectTreeXmlReader.BuildExceptionMessage C# (CSharp) 메소드

BuildExceptionMessage() 개인적인 정적인 메소드

private static BuildExceptionMessage ( IEnumerable propertyReadExceptions ) : string
propertyReadExceptions IEnumerable
리턴 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();
        }