vote up 1 vote down star
1

I really want to put in some sort of section handler into App.config that will execute some code before the application actually starts executing at Main. Is there any way to do such a thing?

flag

69% accept rate
Are you trying to dynamically run code that you've placed in the app.config file on startup? – MusiGenesis Oct 10 '08 at 22:15

2 Answers

vote up 1 vote down check

Why dont you put that call as the first instruction in your main function?

Otherwise you can define another entry point for your program and call your main from there but its basicaly the same

link|flag
vote up 1 vote down

Not sure what you're trying to accomplish...but, I'm not aware of anyway you can have a console application run any other method before Main(). Why not do something like this:

static void Main(string[] args)
{
    //read your app.config variable
    callAlternate = GetConfigSettings(); 
    if(callAlternate)
        AltMain();

    ///...rest of Main()
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.