本文介绍了将 VB 转换为 C# - My.Application.Info.DirectoryPath的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下 VB(VB.NET、VisualBasic)语句的最佳 C#(csharp)等效项是什么:

What are the best C# (csharp) equivalents for the following VB (VB.NET, VisualBasic) statements:

My.Application.Info.DirectoryPath

My.Computer.Clipboard

My.Computer.Audio.PlaySystemSound()

My.Application.Shutdown()

推荐答案

Application.ExecutablePath

Application.ExecutablePath

System.Windows.Forms.Clipboard

System.Windows.Forms.Clipboard

System.Media.*

System.Media.*

申请.退出

这篇关于将 VB 转换为 C# - My.Application.Info.DirectoryPath的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 07:02