As we know, a App.config file can be specified in a C# project in the .Net
IDE. However, how to specify the App.config file for a C# program independent
of any C# project? For example, a.cs is such a C# program that it can only be
compiled by the following command line under Windows console:
c:> csc a.cs
Seek for your guide.
Robert Jordan - 08 Sep 2004 09:04 GMT
> As we know, a App.config file can be specified in a C# project in the .Net
> IDE. However, how to specify the App.config file for a C# program independent
[quoted text clipped - 4 lines]
>
> Seek for your guide.
programfile.exe.config is the rule, so in your case
the file must be named:
a.exe.config
bye
Rob