Created
December 31, 2016 01:27
-
-
Save monica85rodrigues/676fbb3d3179d6ae1a61110c53e51c98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List<decimal> prices = new List<decimal>() { 2.4m, 5.6m, 6.40m }; | |
decimal total = 0; | |
foreach(var price in prices) | |
{ | |
total += i; | |
} | |
return total; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment