hello,
i have written a code like this:
namespace
{
public
string
temp1[0]="1234";
if(k==0)
data[0]=temp1[0];
k++;
}
else
data[k]=temp1[0];
when the first function is called if(k==0) will execute,but when second time function is called data[0] has no data,i.e., it's showing "".what could be the problem