Skip to content

Instantly share code, notes, and snippets.

@FLGMwt
Created February 2, 2015 20:51
Show Gist options
  • Save FLGMwt/1a28712484a12603b6c7 to your computer and use it in GitHub Desktop.
Save FLGMwt/1a28712484a12603b6c7 to your computer and use it in GitHub Desktop.
void Main()
{
var words = new List<string>();
Exclaimer exclaimer = null;
var exclaimedWords = words.Select(a => exclaimer.Exclaimify(a)).ToList();
var moarExclaimedWords = words.Select(exclaimer.Exclaimify).ToList();
}
public class Exclaimer
{
public string Exclaimify(string words)
{
return words + "!!!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment