Skip to content

Instantly share code, notes, and snippets.

@shahriarhossain
Last active August 30, 2016 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shahriarhossain/bda9cef2c159ff24a0162963b6816911 to your computer and use it in GitHub Desktop.
Save shahriarhossain/bda9cef2c159ff24a0162963b6816911 to your computer and use it in GitHub Desktop.
Tuple gets simplier with the release of C# 7.0
public (string, string, int) CoolWay_UserInfo()
{
string firstName = "Shahriar";
string lastName = "Hossain";
int yearsOfExpertise = 4;
return (firstName, lastName, yearsOfExpertise);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment