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# - 如何将字符串转换为字符?

        时间:2023-05-20

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

                  上一篇:如何使用 C# 获取 char**? 下一篇:在 C# 中获取整数的上下字节并将其作为 char 数组发送到 com 端口,如何?

                  相关文章

                  <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>