gpt4 book ai didi

c# - 在 C# 中的一行中读取不同的数据类型

转载 作者:太空宇宙 更新时间:2023-11-03 20:01:34 26 4
gpt4 key购买 nike

我的文件格式是这样的:

14 00 1.5121
14 01 1.3922
14 02 1.2231

遵循

的结构
int int double

以空格分隔。

目前我的代码是:

StreamReader file = new StreamReader("file_to_open.txt");
String buff;
while( file.peek() > 0 )
{
buff = file.ReadLine();
}

但是我一直卡在如何使用buff 来自动解析int int double 格式。 C# 中是否有允许我执行此操作的函数?

谢谢!

最佳答案

string line = file.ReadLine;
string[] elements = line.Split(' ');

int a = Convert.ToInt32(elements[0]);
int b = Convert.ToInt32(elements[1]);
double c = Convert.ToDouble(elements[2]);

关于c# - 在 C# 中的一行中读取不同的数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27598054/

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