Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kudchikarsk/7fa60875758c8efa5bc626085bb7c8a7 to your computer and use it in GitHub Desktop.

Select an option

Save kudchikarsk/7fa60875758c8efa5bc626085bb7c8a7 to your computer and use it in GitHub Desktop.
//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