|
-
Feb 23rd, 2007, 04:34 AM
#1
Thread Starter
Fanatic Member
[RESOLVED] [1.0/1.1] static function
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|