Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. List<string> staticBranches = new List<string>();
  2. foreach (var panel in staticPanels)
  3. staticBranches.Add(panel.StaticBranchName);
  4.  
  5. to jest to samo co
  6.  
  7. var staticBranches = staticPanels.Select(panel => panel.StaticBranchName);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement