Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Last active June 22, 2019 13:41
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 gdyrrahitis/b66736a2f03249d7bc00f0fd92cca31c to your computer and use it in GitHub Desktop.
Save gdyrrahitis/b66736a2f03249d7bc00f0fd92cca31c to your computer and use it in GitHub Desktop.
public void CallingMethodWithObjectParam()
{
int value = 9000;
string text = string.Concat("It's over ", value, "!"); // signature is Concat(object arg0, object arg1, object arg2)
Console.WriteLine(text); // Prints: "It's over 9000!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment