您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關c# 中怎樣使用 My 命名空間,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
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 directory Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory( @"C:\original_directory", @"C:\copy_of_original_directory");
關于c# 中怎樣使用 My 命名空間就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。