예제 #1
0
 public string GetContributorNamesByRolePretty(ContributorRole role)
 {
     return(string.Join(", ", Contributors
                        .Where(c => c.Role == role)
                        .Select(c => c.Contributor.GetFullName()))
            .TrimEnd(new char[] { ',', ' ' }));
 }