C
Coaster
Greetings,
I think I know but am unsure here. I have libraries for business and data
layers and originally designed most functions to be static methods like so
public static somedataobject BLL_CheckMyNumber(passed_in_user_data)
{
return DAL_CheckMyNumber(passed_in_user_data)
}
this is called from a web application I've been developing.
My questions is, if two people call this at the same time will both calls
clash in some way or are both instances completely separate?
I think the latter but want to be sure.
thanks
I think I know but am unsure here. I have libraries for business and data
layers and originally designed most functions to be static methods like so
public static somedataobject BLL_CheckMyNumber(passed_in_user_data)
{
return DAL_CheckMyNumber(passed_in_user_data)
}
this is called from a web application I've been developing.
My questions is, if two people call this at the same time will both calls
clash in some way or are both instances completely separate?
I think the latter but want to be sure.
thanks