1. 程式人生 > 程式設計 >c# 如何使用 My 名稱空間

c# 如何使用 My 名稱空間

Microsoft.VisualBasic.MyServices 名稱空間(在 Visual Basic 中為 My)使訪問多個 .NET 類變得輕鬆直觀,讓你能夠編寫與計算機、應用程式、設定、資源等互動的程式碼。 雖然最初設計用於 Visual Basic,但 MyServices 名稱空間仍可用於 C# 應用程式。

新增引用

可以在解決方案中使用 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 類不相容。 在此特定情況下,可以改為使用屬於 FileSystem 的靜態方法,這些方法也包含在 VisualBasic.dll 中。 例如,下面介紹瞭如何使用此類方法來複制目錄:

// Duplicate a directory
Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory(
  @"C:\original_directory",@"C:\copy_of_original_directory");

以上就是c# 如何使用 My 名稱空間的詳細內容,更多關於c# 名稱空間的資料請關注我們其它相關文章!