C#Form类不会写入文本文件

时间:2015-07-25 06:15:25

标签: c# class variables text

我在C#Form项目中的课程不会写入文本文件。我想从另一个文本文件中取出文本并将其写入另一个文件但是当我检查我的" Write.txt"文件没有写在文件上。

需要修复的我的类代码:

  public static void cal()
    {
        if (level == 6)
        {
            System.IO.StreamWriter tw;
            tw = new StreamWriter("Write.txt");

            string health5 = File.ReadLines("Loons.txt").Skip(31).Take(1).First();
            health = decimal.Parse(health5);
            tw.WriteLine(health5);

            string damage5 = File.ReadLines("Loons.txt").Skip(32).Take(1).First();
            damage = decimal.Parse(damage5);
            tw.WriteLine(damage5);

            string speed5 = File.ReadLines("Loons.txt").Skip(33).Take(1).First();
            speed = decimal.Parse(speed5);
            tw.WriteLine(speed5);

            string time5 = File.ReadLines("Loons.txt").Skip(34).Take(1).First();
            time = decimal.Parse(time5);
            tw.WriteLine(time5);
            tw.Close();
            tw.Dispose();
        }
    }

如何让它写出变量?

0 个答案:

没有答案