我要檢查多少時間我的函數在x秒樣3秒,我所看到的是相似但不完全填滿我的概率1個堆棧執行。例如..檢查函數在x秒內執行多少次? C#
其實我自動化UI和我的情況下工作多次執行,所以我有一個解決方案,我將對話的名稱傳遞給我的函數,並且需要檢查天氣相同的名稱傳遞給函數,當相同的函數在下一個3-4秒執行是相同的,如果是的話我會返回我的事件處理程序所以這裏是我的代碼事件自動化UI
Automation.AddAutomationEventHandler(
WindowPattern.WindowOpenedEvent,
AutomationElement.RootElement,
System.Windows.Automation.TreeScope.Subtree,
(sender, e) =>
{
string dialogueName = sd.Current.Name;
if (element.Current.LocalizedControlType == "Dialog")
{
starttimer(dialogueName);//how to get returned value there
}
}
});
溫控功能代碼
public static nameRecent;
public bool checkerfunctionOFname(string name)
{
if (nameRecent==name)
{
return;
}
}
原因爲什麼我需要定時器3-4秒是假設用戶打開一個保存爲對話框,但在10 ec再次打開後關閉,所以這匹配以前的靜態開放名稱,但是當他打開保存作爲對話,然後相同的重複自己在3秒內自己的同名,所以如果功能再次執行是3秒,它返回false等
解決方案的代碼,但安排它當函數返回false我怎麼能得到它在事件處理程序或如何我停止它的主要功能返回
public static string globalfucntiontime;
public static string globalfucntionname;
int _counter = 0;
Timer timer;
public void starttimer(string name){
_counter = 0;
timer = new Timer();
timer.Interval = 1000;
timer.Tick += (sender, args) =>
TimerEventProcessor(name); //how to get its returned value
globalfucntiontime = _counter.ToString();
timer.Start();
}
private bool TimerEventProcessor(string name)
{
globalfucntionname = name;
if (_counter <= 3 && name == globalfucntionname)
{
return false;
}
else if (name != globalfucntionname)
{
}
globalfucntiontime = _counter.ToString();
_counter += 1;
return true;
}
一個計時器在一個單獨的線程中運行,它會不斷打印一個由您的函數修改的變量呢?讓計時器每隔x秒觸發一次報告。 – Takarii
@Sinatr這不是一個方法的執行時間。 –
@Sinatr這個問題是關於:如何檢查一個方法是否在最後n秒被調用 –