企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 如何:使用 My 命名空间(C# 编程指南) [Microsoft.VisualBasic.MyServices](https://msdn.microsoft.com/zh-cn/library/microsoft.visualbasic.myservices.aspx) 命名空间(Visual Basic 中的 **My**)提供对许多 .NET Framework 类的简单直观的访问,使您能够编写可与计算机、应用程序、设置、资源等交互的代码。虽然 **MyServices** 命名空间最初是为使用 Visual Basic 而设计的,但它也可以在 C# 应用程序中使用。 有关在 Visual Basic 中使用 **MyServices** 命名空间的更多信息,请参见 [使用 My 开发 (Visual Basic)](https://msdn.microsoft.com/zh-cn/library/5btzf5yk.aspx)。 ## 添加引用 在解决方案中使用 **MyServices** 类之前,必须添加一个对 Visual Basic 库的引用。 ### 添加对 Visual Basic 库的引用 1. 在**“解决方案资源管理器”**中右击**“引用”**节点,再选择**“添加引用”**。 2. 出现**“引用”**对话框后,向下滚动列表,选择“Microsoft.VisualBasic.dll”。 您可能还需要在程序开头的 **using** 节中包括以下行。 ``` using Microsoft.VisualBasic.Devices; ``` 此示例调用 **MyServices** 命名空间中包含的各种静态方法。要编译此代码,必须在项目中添加一个对 Microsoft.VisualBasic.DLL 的引用。 ``` using System; using Microsoft.VisualBasic.Devices; class TestMyServices { static void Main() { // Play a sound with the Audio class: Audio myAudio = new Audio(); Console.WriteLine("Playing sound..."); myAudio.Play(@"c:\WINDOWS\Media\chimes.wav"); // Display time information with the Clock class: Clock myClock = new Clock(); Console.Write("Current day of the week: "); Console.WriteLine(myClock.LocalTime.DayOfWeek); Console.Write("Current date and time: "); Console.WriteLine(myClock.LocalTime); // Display machine information with the Computer class: Computer myComputer = new Computer(); Console.WriteLine("Computer name: " + myComputer.Name); if (myComputer.Network.IsAvailable) { Console.WriteLine("Computer is connected to network."); } else { Console.WriteLine("Computer is not connected to network."); } } } ``` 并不是 **MyServices** 命名空间中的所有的类都可以从 C# 应用程序调用:例如 [FileSystemProxy](https://msdn.microsoft.com/zh-cn/library/microsoft.visualbasic.myservices.filesystemproxy.aspx) 类就不兼容。在这种特定情况下,可以改用作为 [FileSystem](https://msdn.microsoft.com/zh-cn/library/microsoft.visualbasic.fileio.filesystem.aspx)(它也包含在 VisualBasic.dll 中)的一部分的静态方法。例如,下面介绍了如何使用这样的方法来复制目录: ``` // Duplicate a directory Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory( @"C:\original_directory", @"C:\copy_of_original_directory"); ``` ## 请参阅 [C# 编程指南](https://msdn.microsoft.com/zh-cn/library/67ef8sbd.aspx) [命名空间(C# 编程指南)](https://msdn.microsoft.com/zh-cn/library/0d941h9d.aspx) [使用命名空间(C# 编程指南)](https://msdn.microsoft.com/zh-cn/library/dfb3cx8s.aspx)