Register
private void Button1_Click() { // Register button event handler
// The register arguments goes in the order: username, password, email, token
bool response = Api.Register(textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text);
if (response){
// Register was successful
}
else {
// Register wasn't a success
}
}
Last updated
Was this helpful?