Guest User

Untitled

a guest
Aug 18th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. var lines = new[]
  2. {
  3. "Line A",
  4. "Line B",
  5. "Line C"
  6. };
  7.  
  8. var query = lines.Select((line, index) =>; new
  9. {
  10. Prop = string.Format("Address {0}", index),
  11. Value = line
  12. });
  13.  
  14. foreach (var prop in query)
  15. {
  16. Console.WriteLine("Prop: {0} - Value: {1} ",prop.Prop, prop.Value);
  17. }
Add Comment
Please, Sign In to add comment