Net Core教程

C#string与char互转

本文主要是介绍C#string与char互转,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

C#string与char互转
https://www.cnblogs.com/zywf/p/4501861.html

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

    Console.WriteLine(s[0]);
        //char转string
    string s1 = c.ToString();
    Console.WriteLine(s);
    Console.ReadKey();
这篇关于C#string与char互转的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!