在if语句中使用字符串

时间:2013-05-27 07:04:02

标签: string if-statement

我有这段代码:

public UILabel Error;

void OnRegister(GameObject g)
{
 if (Error.text.Equals("That e-mail address is in use. Use password recovery if you forgot your password."))
 {

    Error.text= "Inserisci un indirizzo di posta elettronica (email) valido. Questa operazione e’ importante per recuperare la tua parola chiave (password), nel momento in cui l’hai dimenticata.";
    return;
 }
}

我想要做的是当字符串输入到UILabel时,当一个按钮(具有函数OnRegister)它将字符串转换为意大利语。谢谢你的帮助:)

0 个答案:

没有答案