SleepWellPupper
typeof(T).IsAssignableFrom does not work as I expected
I know this unrelated to your question, but important aspect to keep in mind when writing plugin systems via assembly loading is the potential memory leak when not unloading the assembly properly after the plugin is not needed anymore.
Also, sandboxing. But that's another issue.
11 replies
Struggling with Securing Environment Variables in Deployed Desktop Apps
Is this an internal application only? In that case, could the user logon to an email account locally, storing their credentials on the machine (just like an email client I reckon)?
Is the mail account one that the user should not have general (full) access to?
18 replies
Mixing `Volatile` with `Interlocked`
Piggybacking off of the question:
Does
int
require a volatile write operation here at all?
My understanding is that I would prefer volatile operations to prevent struct tearing, but int
is written atomically. Is this correct?23 replies