我第一次尝试在我的代码中实现 Enum。我有一个简单的自定义类,如下所示:
public class Application
{
//Properties
public string AppID { get; set; }
public string AppName { get; set; }
public string AppVer { get; set; }
public enum AppInstallType { msi, exe }
public string AppInstallArgs { get; set; }
public string AppInstallerLocation { get; set; }
}
我在该类中有一个名为 Install() 的方法,如下所示:
public void Install()
{
if (AppInstallType.exe)
{
ProcessStartInfo procInfo = new ProcessStartInfo("cmd.exe");
procInfo.Arguments = "/c msiexec.exe /i " + AppInstallerLocation + " " + AppInstallArgs; ;
procInfo.WindowStyle = ProcessWindowStyle.Normal;
Process proc = Process.Start(procInfo);
proc.WaitForExit();
}
else
{
ProcessStartInfo procInfo = new ProcessStartInfo("cmd.exe");
procInfo.Arguments = "/c " + AppInstallerLocation + " " + AppInstallArgs;
procInfo.WindowStyle = ProcessWindowStyle.Normal;
Process proc = Process.Start(procInfo);
proc.WaitForExit();
}
}
当 AppInstallType 是一个字符串时,我的 Install 方法开头的 If 语句工作正常(AppInstallType = "msi")。当我将 AppInstallType 更改为 Enum 时,我似乎无法确定 if 语句的语法。
如果可能的话,我想避免将任何参数传递给 Install() 方法。如果能够通过调用 Application 对象上的 Install() 方法来安装应用程序,那就太好了,如下所示:
Application app1 = new Application;
app1.AppInstallType = msi;
app1.Install();
我该怎么办?提前致谢。