Posts by denstorti • 59 points
2 posts
-
5
votes3
answers10939
viewsA: How does the C#lock work?
It’s worth researching about resource competition. The semaphore for example can be used when you have a resource pool (for example 3 active connections) and need to ensure that none is used by more…
-
0
votes2
answers995
viewsA: Convert text to number in C# to write to DB
Formatting is part of a visualization aspect (View), ie, the most reusable way would be to write in the database the corresponding numerical value and format in the best way on each of the…