Using lambda expressions and linq
- by Andy
So I've just started working with linq as well as using lambda expressions. I've run into a small hiccup while trying to get some data that I want. This method should return a list of all projects that are open or in progress from Jira
Here's the code
public static List<string> getOpenIssuesListByProject(string _projectName)
{
…