1. <small id='qQUAM'></small><noframes id='qQUAM'>

        <i id='qQUAM'><tr id='qQUAM'><dt id='qQUAM'><q id='qQUAM'><span id='qQUAM'><b id='qQUAM'><form id='qQUAM'><ins id='qQUAM'></ins><ul id='qQUAM'></ul><sub id='qQUAM'></sub></form><legend id='qQUAM'></legend><bdo id='qQUAM'><pre id='qQUAM'><center id='qQUAM'></center></pre></bdo></b><th id='qQUAM'></th></span></q></dt></tr></i><div id='qQUAM'><tfoot id='qQUAM'></tfoot><dl id='qQUAM'><fieldset id='qQUAM'></fieldset></dl></div>

        • <bdo id='qQUAM'></bdo><ul id='qQUAM'></ul>
        <tfoot id='qQUAM'></tfoot>

      2. <legend id='qQUAM'><style id='qQUAM'><dir id='qQUAM'><q id='qQUAM'></q></dir></style></legend>

        C# - 如何将字符串转换为字符?

        C# - How to convert string to char?(C# - 如何将字符串转换为字符?)

        <small id='Gp3hi'></small><noframes id='Gp3hi'>

                  <bdo id='Gp3hi'></bdo><ul id='Gp3hi'></ul>
                  <tfoot id='Gp3hi'></tfoot>
                • <i id='Gp3hi'><tr id='Gp3hi'><dt id='Gp3hi'><q id='Gp3hi'><span id='Gp3hi'><b id='Gp3hi'><form id='Gp3hi'><ins id='Gp3hi'></ins><ul id='Gp3hi'></ul><sub id='Gp3hi'></sub></form><legend id='Gp3hi'></legend><bdo id='Gp3hi'><pre id='Gp3hi'><center id='Gp3hi'></center></pre></bdo></b><th id='Gp3hi'></th></span></q></dt></tr></i><div id='Gp3hi'><tfoot id='Gp3hi'></tfoot><dl id='Gp3hi'><fieldset id='Gp3hi'></fieldset></dl></div>

                  <legend id='Gp3hi'><style id='Gp3hi'><dir id='Gp3hi'><q id='Gp3hi'></q></dir></style></legend>
                    <tbody id='Gp3hi'></tbody>
                  本文介绍了C# - 如何将字符串转换为字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我是 C# 的初学者,我想知道如何将字符串转换为字符,特别是 string[]char[].我尝试了 ToCharArray(),但随后我收到一条错误消息,提示它不存在.Convert.ToChar(<char here>) 给我一个错误提示

                  I am a beginner in C# and I would like to know how to convert strings to chars, specifically string[] to char[]. I tried ToCharArray(), but I then I got an error saying that it doesn't exist. Convert.ToChar(<char here>) gives me a error saying

                  无法从char"转换为System.Array"

                  cannot convert from "char" to "System.Array"

                  推荐答案

                  使用:

                  string str = "Hello";
                  char[] characters = str.ToCharArray();
                  

                  如果你只有一个字符串,你也可以试试

                  If you have a single character string, You can also try

                  string str = "A";
                  char character = char.Parse(str);
                  
                  //OR 
                  string str = "A";
                  char character = str.ToCharArray()[0];
                  

                  这篇关于C# - 如何将字符串转换为字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
                  Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
                  Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
                  How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
                  how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                  JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)
                    <tbody id='gz8ix'></tbody>
                    <legend id='gz8ix'><style id='gz8ix'><dir id='gz8ix'><q id='gz8ix'></q></dir></style></legend>

                        • <bdo id='gz8ix'></bdo><ul id='gz8ix'></ul>

                            <small id='gz8ix'></small><noframes id='gz8ix'>

                            <i id='gz8ix'><tr id='gz8ix'><dt id='gz8ix'><q id='gz8ix'><span id='gz8ix'><b id='gz8ix'><form id='gz8ix'><ins id='gz8ix'></ins><ul id='gz8ix'></ul><sub id='gz8ix'></sub></form><legend id='gz8ix'></legend><bdo id='gz8ix'><pre id='gz8ix'><center id='gz8ix'></center></pre></bdo></b><th id='gz8ix'></th></span></q></dt></tr></i><div id='gz8ix'><tfoot id='gz8ix'></tfoot><dl id='gz8ix'><fieldset id='gz8ix'></fieldset></dl></div>

                          1. <tfoot id='gz8ix'></tfoot>