Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在关注C# 控制台应用程序国际化的基本教程。我正处于显示翻译文本的最后一步,需要在单声道控制台中输入此命令:
LANGUAGE=es mono i18n.exe 但该LANGUAGE命令无法识别。我错过了什么,还是这个命令不适用于 Windows?因为有趣的是,本教程是针对 C# 的,但命令行是针对 unix 系统的。还有一些其他的小错误。
LANGUAGE=es mono i18n.exe
LANGUAGE
但是无法识别 LANGUAGE 命令
LANGUAGE 在该上下文中是一个环境变量。在 *nix shell 环境中,这是传递 env 的一种方式。vars 到 cmd 而不先设置/导出它们。
在 Windows 下,该 cmd 将是:
SET LANGUAGE=es mono i18n.exe SET LANGUAGE=