Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public String displayProducts()
  2. {
  3. string display = "";
  4. foreach (Product prod in this.productList)
  5. {
  6. display += prod.ProductId + " " + prod.ProductName + " " + prod.ProductQuantity + " " + prod.ProductTotalPrice + " " + prod.ProductUnitPrice.ToString() + "\n";
  7. }
  8. return display;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement