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