Is it possible to call a constructor for a second time, like this:
public ClassName()
{
Value = 10;
}
public void Reset()
{
// Reset
ClassName();
}
Or is this the only way:
public ClassName()
{
Reset();
}
public void Reset()
{
// Reset
Value = 10;
}