可能重复:
如何在 IronPython 中传递命令行参数?
我是 Ironpython 和 sharpdevelop 的新手,我正在尝试运行以下代码,
from sys import argv
script, first, second, third = argv
print "The script is called:", script
print "Your first variable is:", first
print "Your second variable is:", second
print "Your third variable is:", third
如何将参数传递给命令行?