1
vote
2answers
404 views
how to manage concurrency for inserting in C#?
Many optimistic concurrency examples refer to updates by using a database timestamp or flag.
However, I want to handle optimistic concurrency for INSERTS
To illustrate here is a f …
2
votes
3answers
664 views
Why use Hashtable.Synchronized?
From the MSDN documentation:
"Synchronized supports multiple writing threads, provided that no threads are reading the Hashtable. The synchronized wrapper does not provide thread-safe acces …
0
votes
How to stop worrying about using the best materials and just start learning .Net?
When you work at a new job, you learn a lot because you have great individuals who transfer a lot of knowledge they find useful. You can review how they do things, which parts are done well and wh …
2
votes
Parse DateTime with timezone of form PST/CEST/UTC/etc
I have two answers because I'm not exactly sure what you are asking.
1) I see you are using CultureInfo, so if you just want to format
the date and time to be culture speci …
