I’m completely new to C# but have a couple years experience with VB.NET, and I’m trying to get my first C# project off the ground. My C# books are good; however they don’t answer the questions I have at this point in my project.
My project will be a Windows application that does not need a form. I want to create a .exe file to be executed manually by user or scheduled task.
If I were starting my new project in VB.NET, I would open a new project, create a new Windows application and delete the form because I don’t need it. Then I’d add a Module and make it my startup object.
There are no modules in C#, and I’m wondering if I should put all of my code into classes. Can I make a class my startup object?
I appreciate any help and advice that will lead me in the correct direction. Thank you.
Tracey
My project will be a Windows application that does not need a form. I want to create a .exe file to be executed manually by user or scheduled task.
If I were starting my new project in VB.NET, I would open a new project, create a new Windows application and delete the form because I don’t need it. Then I’d add a Module and make it my startup object.
There are no modules in C#, and I’m wondering if I should put all of my code into classes. Can I make a class my startup object?
I appreciate any help and advice that will lead me in the correct direction. Thank you.
Tracey