gpt4 book ai didi

c# - 当前上下文中不存在 DriveInfo?

转载 作者:行者123 更新时间:2023-12-02 22:32:47 24 4
gpt4 key购买 nike

为什么在下面的 C# LINQ 代码中会出现以下错误

DriveInfo 在当前上下文中不存在

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);
}
}
}

非常感谢!

最佳答案

你需要一个 using 指令:

using System.IO;

... 导入 System.IO.DriveInfo .

关于c# - 当前上下文中不存在 DriveInfo?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11953014/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com