我的App.Config中有以下内容,但我想将其嵌入到我的控制台应用程序中,以便exe不需要配置文件。这怎么可能?
<runtime>
<AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false;Switch.System.IO.BlockLongPaths=false" />
</runtime>
答案 0 :(得分:1)
您可以调用SetSwitch
方法:
AppContext.SetSwitch("Switch.System.IO.UseLegacyPathHandling", false);
AppContext.SetSwitch("Switch.System.IO.BlockLongPaths", false);
请参阅MSDN上的文档。