Skip to content

Instantly share code, notes, and snippets.

@b099l3
Last active August 1, 2019 11:29
Show Gist options
  • Save b099l3/65dc62cb11890463a43e960ba24b7c71 to your computer and use it in GitHub Desktop.
Save b099l3/65dc62cb11890463a43e960ba24b7c71 to your computer and use it in GitHub Desktop.

Used to create a list of dummy items

public List<Item> Items { get; set; } = Enumerable.Range(1, 200)
                                                  .Select(i => new Item 
                                                  { 
                                                      AutomationId = i, 
                                                      Label = $"Option Number {i}" 
                                                  }).ToList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment