2

以下の C# LINQ コードで次のエラーが発生するのはなぜですか?

DriveInfo does not exist in current context?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var drives = DriveInfo.GetDrives()
             .Where(drive => drive.IsReady && drive.DriveType == DriveType.Removable);
        }
    }
}

よろしくお願いします!

4

1 に答える 1

5

usingディレクティブが必要です:

using System.IO;

... をインポートしSystem.IO.DriveInfoます。

于 2012-08-14T13:12:58.480 に答える