我创建了一个用于验证函数的控制台应用程序,我需要使用vbscript执行此应用程序。执行此exe后,我想返回退出代码,无论函数是否返回成功。如何在.net中返回状态或退出代码?
答案 0 :(得分:11)
我将假设您正在编写C#或VB.NET。在任何一种情况下,通常人们都有一个不返回任何内容的Main函数,但是你可以改变它来返回一个整数来表示退出代码。
对于C#,请参阅this MSDN page。
你可以这样做:
static int Main()
{
//...
return 0;
}
对于VB.NET,请参阅this MSDN page。
你可以这样做:
Module mainModule
Function Main() As Integer
'....
'....
Return returnValue
End Function
End Module
答案 1 :(得分:6)
除了@gideon,您还可以设置
Environment.ExitCode = theExitCode;
在代码的其他部分,如果发生了非常糟糕的事情则直接退出
答案 2 :(得分:0)
正如@gideon所评论的那样,在您的可执行文件中,您必须使用return
语句来返回该数字。
在您的脚本中,请在调用此可执行文件后阅读%ERRORLEVEL%
。这就是Windows保存返回代码的地方。
答案 3 :(得分:0)
鉴于此C#计划:
class MainReturnValTest {
static int Main(string[] args) {
int rv = 0;
if (1 == args.Length) {
try {
rv = int.Parse(args[0]);
}
catch(System.FormatException e) {
System.Console.WriteLine("bingo: '{1}' - {0}", e.Message, args[0]);
rv = 1234;
}
}
System.Console.WriteLine("check returns {0}.", rv);
return rv;
}
}
样品运行:
check.exe
check returns 0.
check.exe 15
check returns 15.
check.exe nonum
bingo: 'nonum' Input string was not in a correct format.
check returns 1234.
和这个VBScript脚本(减少到最低限度,不要在生产中这样做):
Option Explicit
Const WshFinished = 1
Dim goWSH : Set goWSH = CreateObject("WScript.Shell")
Dim sCmd : sCmd = "..\cs\check.exe"
If 1 = WScript.Arguments.Count Then sCmd = sCmd & " " & WScript.Arguments(0)
WScript.Echo sCmd
Dim nRet : nRet = goWSH.Run(sCmd, 0, True)
WScript.Echo WScript.ScriptName, "would return", nRet
With goWSH.Exec(sCmd)
Do Until .Status = WshFinished : Loop
WScript.Echo "stdout of check.exe ==>" & vbCrLf, .Stdout.ReadAll()
nRet = .ExitCode
WScript.Echo ".ExitCode of check.exe", nRet
End With
' !! http://stackoverflow.com/questions/2042558/how-do-i-get-the-errorlevel-variable-set-by-a-command-line-scanner-in-my-c-sha
WScript.Echo "Errorlevel:", Join(Array(goWSH.Environment("PROCESS")("ERRORLEVEL"), goWSH.ExpandEnvironmentStrings("%ERRORLEVEL%"), "???"), " - ")
WScript.Echo WScript.ScriptName, "returns", nRet
WScript.Quit nRet
样品运行:
cscript 13921064.vbs
..\cs\check.exe
13921064.vbs would return 0
stdout of check.exe ==>
check returns 0.
.ExitCode of check.exe 0
Errorlevel: - %ERRORLEVEL% - ??? <=== surprise, surprise
13921064.vbs returns 0
echo %ERRORLEVEL%
0
cscript 13921064.vbs nonum & echo %ERRORLEVEL%
..\cs\check.exe nonum
13921064.vbs would return 1234
stdout of check.exe ==>
bingo: 'nonum' Input string was not in a correct format.
check returns 1234.
.ExitCode of check.exe 1234
Errorlevel: - %ERRORLEVEL% - ???
13921064.vbs returns 1234
0 <=== surprise, surprise
DNV35 E:\trials\SoTrials\answers\13927081\vbs
echo %ERRORLEVEL%
1234
你会看到
cscript 13921064.vbs nonum & echo %ERRORLEVEL%
也没用了