Hi,
Somebody can explain about my doubts in static function. If two users used at the same time. Would be posible the value inside this function can be is the parameter pass by user2?
ex.
user1 =Functionname("A","B");
user2 =Functionname("C","D");


public static string Functionname(string par1, string par2)
{
string concatstring = par1 + par2;
//code here
//code here // user2 at this line
//code here
//code here
//code here // user1 at this line . what is the value of concatstring of user1 at this moment?

return concatstring;




}

Thanks
popskie