Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在关注此页面以尝试在我的 Visual Basic 应用程序中获取文件名。当我开始键入“Path”时,Visual Studio 2010 IDE 无法识别 Path.GetFileName。如何让 Visual Studio 2010 识别 Path.GetFIleName 方法?
这是微软官方页面。
您是否有可能没有引用 System.IO 命名空间?如果您键入 System.IO.Path。那么它会起作用吗?如果是这样,请保留它,或将 Imports System.IO 添加到文件顶部。
导入系统.IO 模块模块1 子主() Dim x As String = Path.GetFileName("") 结束子 端模块