Skip to content

Instantly share code, notes, and snippets.

@joymon
Last active August 29, 2015 14:21
Show Gist options
  • Save joymon/13260716aa3fcb6b2f81 to your computer and use it in GitHub Desktop.
Save joymon/13260716aa3fcb6b2f81 to your computer and use it in GitHub Desktop.
Demo of function call without parentheses in C#
string name = "JOY";
if(name.Any(char.IsLower))
{
Console.WriteLine("Word '{0}' has lower letter(s)",name);
}
else
{
Console.WriteLine("Word '{0}' does not have lower letters",name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment