Код: Выделить всё
public MyClass(string myString)
{
// Some code goes here
}
public MyClass(string myString, bool myParameter = false)
{
// Some different code here
}
Подробнее здесь: https://stackoverflow.com/questions/115 ... parameters
Код: Выделить всё
public MyClass(string myString)
{
// Some code goes here
}
public MyClass(string myString, bool myParameter = false)
{
// Some different code here
}