gpt4 book ai didi

C# 字符串 float ?

转载 作者:可可西里 更新时间:2023-11-01 09:16:57 25 4
gpt4 key购买 nike

我这里有这段代码:

int i = 0;

StreamReader re = File.OpenText("TextFile1.txt");
string input = null;

while ((input = re.ReadLine()) != null)
{
string[] sites = input.Split(' ');
for (int j = 0; j < sites.Length; j++)
{
MyArray[i, j] = Convert.ToInt32(sites[j]);
}
i++;
}


for (int a = 0; a < 5; a++)
{
for (int j = 0; j < 5; j++)
{
Console.Write(MyArray[a, j] + " ");

}
Console.WriteLine();
}

我的问题是这行代码

MyArray[i, j] = Convert.ToInt32(sites[j]);

它正在转换为 int,如何将其转换为 float?

最佳答案

试试 float.Parse(string) 或 Double.Parse(string)

关于C# 字符串 float ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1844510/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com