private string[] B()
{
  string[] s=string[2];
  s[0]="a";
  s[1]="b";
}
private void A()
{
string a,b
string[] s=string[2];
s=b();
a=s[0];
b=s[1];
}