我有这个任务流程应该控制我的edittext的文本,当长度是21时,它应该运行一个方法。 似乎该过程运行一次 这是代码:
Task.Factory.StartNew(() =>
{
if (macAddress.Text.Length == 21)
{
address = Regex.Replace(macAddress.Text, "[^0-9.]", "");
}
btSocket = b.AndroidBtConnection(address, MY_UUID);
if (btSocket == null)
{
Console.WriteLine("connessione nulla");
macAddress.Text = "";
}
});