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.
我需要使用命令行参数实现本地化。
我得到了这个答案
string[] cmd = Environment.GetCommandLineArgs();
这样做的目的是将您通过 Cmd 传递的所有参数添加到字符串数组中,然后您可以将这些传递的参数用于特定功能。
就我而言,如果我将“eng”作为命令行参数传递,整个应用程序将获得“eng”文化。
这就是我使用 CommandLineArguments 实现本地化的方式。