HelloWorld.ActionReturnsDescriptor.GetDescriptiveMessage C# (CSharp) Method

GetDescriptiveMessage() private static method

private static GetDescriptiveMessage ( ItemList items ) : string
items ItemList
return string
        private static string GetDescriptiveMessage( ItemList items )
        {
            return string.Join( "、", items.Select( i => string.Format( "{0}*{1}", i.ItemDescriptor.Name, i.Quantity ) ) );
        }