workani
What should I do next?
I’ve grasped some basics of C# and now I’m capable of creating simple console applications with API integrations. Should I continue learning basics? (If yes, what should I learn) or could I dive into ASP.NET? What would be better for my learning?
10 replies
✅ Do I always need to avoid coupling?
For example, I have a class Application where the main part of my project's logic is written, and I also have a GenerateVocabulary object which will itself use an Interface to actually generate content. Will it be good practice to simply create this object inside my Application class? And in general, is it acceptable in a professional context to create one object inside another if I'm 100% sure that I won't change it?
32 replies
Populating a Dictionary from a CSV File with Words Separated by Semicolons
Hi, I want to create a small console app for learning new vocabulary, and I need to populate a dictionary (source language: target language) from a CSV file that contains vocabulary in this format: english;german\n. How could I populate a dictionary?
172 replies