Created
July 6, 2023 13:50
-
-
Save jskeet/18b350591ed6758eafcf031fc26a261f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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