编译错误c#

时间:2011-11-23 20:45:31

标签: c#

我有一定数量的代码在visual studio中编译,但是在不同的ide中它不能编译。

返回的错误是System.IO文件不包含“ReadLines”的定义。

我正在使用system.io

与eror一起出现的代码部分是ReadLines。

任何人都可以提供灵魂吗?

using System;
using System.IO;                      // enable the user of different sections of the .net framework 
using System.Linq;
using System.Collections.Generic;
namespace HashTagAssignment
{
    class HashTag
    {
        static void Main(string[] args)
        {
            string tweets = File.ReadAllText(@"F:\tweets.txt"); // Retrives Text from file and loads into console
            {
                Console.WriteLine(tweets); // writes contense to console
                {
                    var lineCount = File.ReadAllLines(@"F:\tweets.txt").Length; // counts number of lines in the whole document
                    Console.WriteLine("Number of Lines:{0}", lineCount); // displays answer
                    {
                        var result = File.ReadLines(@"F:\tweets.txt").Distinct().Count(); // search txt file for Distinct enteries and implement counter. 
                        Console.WriteLine(" Number of Unique Tags: {0}", result); // display result of counter 
                        {
                            Console.WriteLine(" Top Twenty By Number:"); // Title Top twenty hash tags, with order they occured in left colum. 
                            Console.WriteLine(); // creates a line space 
                            var rank = File // assigns varible to a file 
                        .ReadLines(@"F:\tweets.txt") // directs to file, in this case text
                      .GroupBy(x => x)
    .Select(g => new { Key = g.Key, Count = g.Count() })
    .OrderByDescending(i => i.Count)
    .Take(20);
                            foreach (var item in rank)
                            {
                                Console.WriteLine("{0} {1}", item.Count, item.Key);
                            }
                            {
                                {
                                }
                                Console.ReadKey(true);
                            }
                        }
                    }
                }
            }
        }
    }
}

3 个答案:

答案 0 :(得分:10)

File.ReadLines方法是.Net 4.0的新方法。

答案 1 :(得分:1)

在.NET 4.0之前,File.ReadLines不可用。您需要确保编译.NET 4.0+或Mono的兼容版本。

答案 2 :(得分:0)

如果您只是在另一个IDE中收到此错误,请确保您的解决方案/项目(如果其他IDE甚至使用它)具有对包含它的程序集的引用。我认为是mscorlib.dll。

编辑:好奇,IDE是什么?