The theoretical question. If you have 100 separate requests that go to the aspx webpage, which calls the static method below.
public static GeocodeResult GeocodeQuery(string query)
{
int train, tube, dlr = 0;
if (train)
{
}
}
Does each request have a separate call stack?
If so - Does this call to the static method call these separate call stacks?
If so - Consequently, are these ints threads safe? i.e. 100 requests, 100 call frames, 300 tf.
Greetings
source
share