我有一个文本文件,在其中,它看起来像:
xxxx:value
我想读的是值,我试图操纵:
using System;
using System.IO;
class Test
{
public static void Main()
{
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line = sr.ReadToEnd();
Console.WriteLine(line);
}
}
catch (Exception e)
{
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
}
}
}
但是我这样做的运气并不好,任何帮助都会很棒。