這可能非常容易,但是如何將字符串放入或轉換爲數組?c#將字符串放入數組
是我的代碼,如下:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string one;
string[] two;
one = "Juan";
two = {one}; // here is the error
HttpContext.Current.Response.Write(two);
}
}
和錯誤是: 編譯器錯誤信息:CS0029:無法隱式轉換類型「字符串」到「字符串[]」
感謝您的幫助!
該系統顯示如下:在'型expected'同一條線。感謝您的快速回答。 –
@JulianMoreno,嘗試'two = new string [] {one};' – Habib
+1公平玩D Stanley – Micha