Skip to content

Instantly share code, notes, and snippets.

@jskeet
Created July 6, 2023 13:50
Show Gist options
  • Save jskeet/18b350591ed6758eafcf031fc26a261f to your computer and use it in GitHub Desktop.
Save jskeet/18b350591ed6758eafcf031fc26a261f to your computer and use it in GitHub Desktop.
class Test
{
string name;
int value;
public Test(string name) : this(name, value)
{
}
public Test(string name, int value)
{
this.name = name;
this.value = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment