简体   繁体   中英

VB.NET to C# - my.computer.getfiles()

这个VB.NET代码的等效C#代码是什么?

My.Computer.FileSystem.GetFiles(....)

The My class is VB.NET specific.

You can use the static methods of the System.IO.Directory class - eg Directory.GetFiles.

You can use the VB.Net's "My" in C#. It's all code, after all. In your C# project, you'd simply add a reference to Microsoft.VisualBasic

You can check out a more detailed explanation here:

http://www.codeproject.com/KB/cs/MyNamespace.aspx

I don't think there is anything in 'My' that you can't achieve without using it; but just because you aren't programming in VB.Net you have to not use it.

Having said all that - most architect type people I know would roll their eyes at you if they saw you adding a reference to VisualBasic in a C# project. But it's totally doable.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM