1. how abouttextBox1.Text = new String(charArray);2. tryArray.Clear(charArray,0,charArray.Length);

解决方案 »

  1.   

    your variable is a char[], its ToString() implementation gives you the class name
      

  2.   

    string不是也是个对象吗?
    是返回的对象不是string的对象吗?
    我这样理解之后的问题对吗?
    我的英文。是吧
    谢谢
      

  3.   

    String is a classnew String(..) creates a new string object
      

  4.   

    也就是说ToString()返回的不是一个string object,  是吗?那又是什么呢?单纯的一个字符串是吗?谢谢
    有时间再帮我看看这个问题吧,谢谢!
    http://expert.csdn.net/Expert/topic/2891/2891882.xml?temp=.2843134
      

  5.   

    string s = System.Text.Encoding.Unicode.GetString(array);
      

  6.   

    String s=new String(c);//c是char数组