时间:2021-05-20
Microsoft.VisualBasic.MyServices 命名空间(在 Visual Basic 中为 My)使访问多个 .NET 类变得轻松直观,让你能够编写与计算机、应用程序、设置、资源等交互的代码。 虽然最初设计用于 Visual Basic,但 MyServices 命名空间仍可用于 C# 应用程序。
添加引用
可以在解决方案中使用 MyServices 类之前,必须添加对 Visual Basic 库的引用。
添加对 Visual Basic 库的引用
同时建议将以下行包括在程序开头的 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 类不兼容。 在此特定情况下,可以改为使用属于 FileSystem 的静态方法,这些方法也包含在 VisualBasic.dll 中。 例如,下面介绍了如何使用此类方法来复制目录:
// Duplicate a directoryMicrosoft.VisualBasic.FileIO.FileSystem.CopyDirectory( @"C:\original_directory", @"C:\copy_of_original_directory");以上就是c# 如何使用 My 命名空间的详细内容,更多关于c# 命名空间的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
C#如何使用HttpWebRequest重定向1、HttpWebRequest是c#中的网络交互组件存在与system.net命名空间中打开vs2017新建一个
创建C#串口通信程序之命名空间System.IO.Ports命名空间中最重用的是SerialPort类。创建C#串口通信程序之创建SerialPort对象通过创
C#程序的通用结构C#程序可由一个或多个文件组成。每个文件都可以包含零个或零个以上的命名空间。一个命名空间除了可包含其他命名空间外,还可包含类、结构、接口、枚举
要使用Dictionary集合,需要导入C#泛型命名空间System.Collections.Generic(程序集:mscorlib)Dictionary的描
在C++和C#中,命名空间用于尽可能地减少名称冲突。例如,在.NETFramework中,命名空间有助于将Microsoft.Build.Task.Messag