C#string与char互转

vs2019 c#与c++传递字符串时 需要转化

 

参考:https://blog.csdn.net/weixin_30561425/article/details/99779090

string s = "asdf";
            //字符转char
        char[] c = s.ToCharArray();

        Console.WriteLine(s[0]);
            //char转string
        string s1 = c.ToString();
        Console.WriteLine(s);
        Console.ReadKey();

 

转载于:https://www.cnblogs.com/zywf/p/4501861.html

 

posted @ 2021-09-09 21:35  梅长苏枫笑  阅读(806)  评论(0编辑  收藏  举报