在C#中将字符串数组转换为Int数组

吉吉·拉皮萨(GigyLapisar)

我正在尝试创建一个排序系统,并且正在尝试将相当长的字符串形式的整数列表转换为一个int数组,以便能够更轻松地对数组进行排序。初始字符串数组是通过从文本文件中读取整数列表形成的。

这是当前代码的外观,我目前正在根据年份进行排序:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;



namespace Climate_Sorting_Application
{
    public class Program
    {
        public static string[] monthArray = File.ReadAllLines("Month.txt");
        public static string[] yearArrayPre = File.ReadAllLines("Year.txt");
        public static string[] afArray = File.ReadAllLines("WS1_AF.txt");
        public static string[] rainArray = File.ReadAllLines("WS1_Rain.txt");
        public static string[] sunArray = File.ReadAllLines("WS1_Sun.txt");
        public static string[] tmaxArray = File.ReadAllLines("WS1_TMax.txt");
        public static string[] tminArray = File.ReadAllLines("WS1_TMin.txt");
        public static string[] af2Array = File.ReadAllLines("WS2_Rain.txt");
        public static string[] rain2Array = File.ReadAllLines("WS2_Rain.txt");
        public static string[] sun2Array = File.ReadAllLines("WS2_Sun.txt");
        public static string[] tmax2Array = File.ReadAllLines("WS2_TMax.txt");
        public static string[] tmin2Array = File.ReadAllLines("WS2_TMin.txt");
        public static string arrayToAnalyse;

        static void Main(string[] args)
        {
            Console.WriteLine("Please Specify the Data to be Analysed");
            Console.WriteLine("You must specify the Text File name (Do not include .txt");
            arrayToAnalyse = Console.ReadLine();



            Console.ReadLine();
        }

        private static void sortProcess()
        {

        }
    }
}

有什么方法可以轻松转换为正确的数据类型?甚至是在初始文件读取期间将其转换为int值数组的方法?

itsme86

当然!LINQ确实可以使事情变得简单:

int[] someArray = File.ReadAllLines(filename).Select(int.Parse).ToArray();

这将运行通过该int.Parse()方法读取的每一行,然后将这些结果转换为数组。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章