Skip to content

Instantly share code, notes, and snippets.

@shahriarhossain
Last active August 30, 2016 14:09
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/fe50cf4b2b4ddb25f6cd06fabf2aa3b4 to your computer and use it in GitHub Desktop.
Save shahriarhossain/fe50cf4b2b4ddb25f6cd06fabf2aa3b4 to your computer and use it in GitHub Desktop.
You can optionally send name that make more sense to you
public (string fName, string lName, int experience) 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