Created
July 24, 2017 19:55
-
-
Save henzard/4fbbed9e0b9b744545dea98a232d6b6e 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
Invoice inv = new Invoice(); | |
inv.LineItems = new List<LineItem>(); | |
//Inside a loop | |
inv.LineItems.Add(new LineItem() { | |
Description = "Testing" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment