Hello,
I wonder if 2 backgroundworkers which are asynchronous can call the same function like in the code below.
What I wonder is if the function is called Exactly at the same time from 2 workers. Can anything go wrong here or is this not a problem. I am not 100% sure how this works?
public static String returnString(double Number)
{
String returnNumber = Number.ToString();
return returnNumber;
}
private void worker1_DoWork(object sender, DoWorkEventArgs e)
{
while(true)
{
String serverDateTime = returnString(123);
}
}
private void worker2_DoWork(object sender, DoWorkEventArgs e)
{
while(true)
{
String serverDateTime = returnString(1234567);
}
}