我有以下代码:
textPath = Application.streamingAssetsPath + "JSONFiles/text_to_text.txt";
StreamReader reader = new StreamReader(textPath);
string text = reader.ReadLine();
string[] colour = text.Split(",");
m_textMeshPro.SetText(text);
reader.Close();
代码正在从txt文件读取一行。我在内部使用这个。但是,拆分函数(“,”)内的参数下方以及当我将鼠标悬停在其上方时,都有一条红线。它说:“参数1:不能从'string'转换为'char'。
答案 0 :(得分:2)
使用它,将双引号替换为单引号以指定字符。
string[] colour = text.Split(',');