C#char和string之间转换char数组要转换成string可没想象的那么容易。需要使⽤到System.Text.StringBuilder!
实例如下:
char[] temp={a,b,c};数组转换成字符串
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append(temp);
string target=sb.ToString();
反过来就⽐较容易了,stringValue.ToCharArrary()就可以了。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论