Skip to content

Instantly share code, notes, and snippets.

@davidelettieri
Created October 5, 2019 18:01
Show Gist options
  • Save davidelettieri/891f36098356d5273882da015c9f3e6a to your computer and use it in GitHub Desktop.
Save davidelettieri/891f36098356d5273882da015c9f3e6a to your computer and use it in GitHub Desktop.
Boxing in ToString()
public class Foo
{
public int Value { get; set; }
public override string ToString()
{
return $"{{{nameof(Value)}={Value}}}";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment