Shidell
Shidell
I would like to implement a wmain/wchar_t/wstring solution--it looks like #15 might go hand-in-hand for Windows developers and/or anyone using Unicode. Thoughts on a good way to implement without stepping...
This is my first time writing templated code, and I'm struggling with it. I made an attempt [here](https://github.com/Shidell/argh/tree/feature/template-strings), but wasn't very successful. I know you're opposed to macros, but it's...
> Also do you really want BeginInvoke behavior which always interrupts control flow (posting to the message loop) even if you are already on the UI thread? @weltkante Doesn't BeginInvoke...
The recommended practice in WinForms when mutating a Control looks like this: ``` if (textBox.InvokeRequired) { textBox.BeginInvoke(new MethodInvoker(() => { textBox.Text = "Hello World"; })); return; } textBox.Text = "Hello...
> Not from my experience. What makes you assume this? > Who recommends this and why and in what context? Can you point to a bunch of examples? Microsoft's pages...
How does this change affect resultant image reconstruction?
@mveril I understand the nature of your request, but I don't believe this is appropriate as it is not "async all the way down." That is, the DISM API is...