Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「文字列[]を文字列に変換できません」というエラーが発生しました
string[] digitsArray = {dd, pp, ff, cc};
digitsArray は配列の配列であり、すべての「dd、pp、ff、cc」は文字列値を持つ配列です。
私はあなたが欲しいと思います
string[][] digitsArray = {dd, pp, ff, cc};