Quando for para a senha aparecer no textbox poderia ser colocado txtSenhaPasswordChar = default inves de '\0' ?
private void txtVerSenha_Click(object sender, EventArgs e)
{
if (!VerSenhaTxt)
{
txtSenha.PasswordChar = default;
VerSenhaTxt = true;
btnVerSenha.Text = "Esconder senha";
}
else
{
txtSenha.PasswordChar = '*';
VerSenhaTxt = false;
btnVerSenha.Text = "Ver senha";
}
}