A command-line application to track personal expenses with persistent storage.
- Add expenses with amount and description
- View all expenses with dates
- Data persists between sessions (JSON storage)
- Automatic date tracking
- C# (.NET)
- System.Text.Json for data serialization
- File I/O for persistence
- Clone this repository
- Open in Visual Studio or your preferred C# IDE
- Run the program
- Add expenses and they'll be saved automatically
- Working with JSON serialization/deserialization
- File I/O operations in C#
- Building a complete application from scratch
- Debugging serialization issues