Created
May 13, 2018 06:35
-
-
Save kudchikarsk/7fa60875758c8efa5bc626085bb7c8a7 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
| //natural code with no code alignment and you can see that | |
| //readability of the code is not that good | |
| var people1 = new List<Person>() | |
| { | |
| new Person { Name = "Benita", Location = "Bareilly India", Age = 25 }, | |
| new Person { Name = "Deedee Almon Fonsec", Location = "Bari Italy", Age = 32 } , | |
| new Person { Name = "Chase Hussain", Location = "Barika Algeria", Age = 45 } , | |
| new Person { Name = "Cordia", Location = "Barinas Venezuela", Age = 26 } , | |
| new Person { Name = "Malvina Neff", Location = "Barisal Bangladesh", Age = 36 } , | |
| new Person { Name = "Erika ", Location = "Barnaul Russia", Age = 56 } , | |
| new Person { Name = "Lisabeth Terr", Location = "Barquisimeto Venezuela", Age = 67 } , | |
| new Person { Name = "Farrah ", Location = "Barra Mansa Brazil", Age = 57 } , | |
| new Person { Name = "Domonique Biv", Location = "Barrackpur India", Age = 57 } , | |
| new Person { Name = "Jonah", Location = "Barrancabermeja Colombia", Age = 34 } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment