このコードをVBで翻訳しようとしましたが、その方法がわかりません...翻訳の方法を教えてもらえますか?
ありがとうございました
private void WatchForDrives()
{
DeviceStatusMonitor monitor = new DeviceStatusMonitor(DeviceClass.FileSystem, false);
monitor.StartStatusMonitoring();
monitor.DeviceNotification += delegate(object sender, DeviceNotificationArgs e)
{
string message = string.Format("Disk '{0}' has been {1}.", e.DeviceName, e.DeviceAttached ? "inserted" : "removed");
MessageBox.Show(message, "Disk Status");
};
}