HellOoo :
my questoin is like this , if I have a function
void hello(string hh){
hh=textbox1.text
}
if I want to take the value of hh from the function 'hello' , to use it in another function , it impossible to make this
void main()
{
hello(hh);
string x=hello(hh); <-wrong
}
so how can I take the value of hh from the function
Thanks