以下の 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);
}
}
}
よろしくお願いします!