C# OOP File Structure?
- by Soo
Hey SO,
I just started programming with objects recently and am trying to learn good habits early on.
The way I plan to structure my application is to have two files:
1: Program.cs - This file will contain the main logic for the application
2: Class.cs - This file will contain all of the class definitions
Pretty simple. What I'm wondering if I should have any more files for ... well, you tell me.
Any help would be appreciated.