public string[] s() { string[] str = new string[] { "aaa", "bbb" }; return str; }
取得数组
string[] ss =s(); Response.Write(ss[0]); // 返回aaa