I have two methods on my project as defined below:
void Person(int ID, double height = 0.0, string team = \"Knights\") { //my codes } void Person(int ID, d
TL:DR The first method (most specific) will be called because in that case no parameter needs to be bound using default values.
For an in-depth discussion refer to this article.