c# Programming Glossary: blogged
WebAPI Request Streaming support http://stackoverflow.com/questions/14452871/webapi-request-streaming-support selfHostConf.TransferMode TransferMode.Streamed I have blogged about dealing with large files in Web API in more details before.. so you might need to adjust some signatures etc. I also blogged about pushing chunks of stream data here http www.strathweb.com..
Why do I get InvalidCastException when casting a double to decimal http://stackoverflow.com/questions/1667169/why-do-i-get-invalidcastexception-when-casting-a-double-to-decimal exception share improve this question Eric Lippert has blogged about exactly this in depth. I agree it's unintuitive at first..
Immutable object pattern in C# - what do you think? http://stackoverflow.com/questions/263585/immutable-object-pattern-in-c-sharp-what-do-you-think do here when mapped to readonly fields ... update I've blogged on this here For info I probably wouldn't make those methods..
Pipe forwards in C# http://stackoverflow.com/questions/336775/pipe-forwards-in-c-sharp a type and Action was really just Func ... Void Update I blogged a little about the theory behind this . Update 2 An alternative..
ASP.NET - AppDomain.CurrentDomain.GetAssemblies() - Assemblies missing after AppDomain restart http://stackoverflow.com/questions/3552223/asp-net-appdomain-currentdomain-getassemblies-assemblies-missing-after-app return BinAssemblies Update I've just blogged about this here http www.dominicpettifer.co.uk Blog 44 how to..
In .NET, which loop runs faster, 'for' or 'foreach'? http://stackoverflow.com/questions/365615/in-net-which-loop-runs-faster-for-or-foreach for loop share improve this question Patrick Smacchia blogged about this last month with the following conclusions for loops..
Using SSE in c# is it possible? http://stackoverflow.com/questions/415375/using-sse-in-c-sharp-is-it-possible Mono 2.2 release will have SIMD support. Miguel de Icaza blogged about the upcoming feature here and the API is here . Although..
What is the best workaround for the WCF client `using` block issue? http://stackoverflow.com/questions/573872/what-is-the-best-workaround-for-the-wcf-client-using-block-issue using share improve this question Actually although I blogged see Luke's answer I think this see alternative link is better..
Why doesn't C# have support for first pass exception filtering? http://stackoverflow.com/questions/602066/why-doesnt-c-sharp-have-support-for-first-pass-exception-filtering us the exception is safe to recover from. The CLR team blogged about this recently Catch Rethrow and Filters Why should you.. is code in the BCL that does this. Lots of people have blogged about doing it but they rarely if ever mention the thing about..
If strings are immutable in .NET, then why does Substring take O(n) time? http://stackoverflow.com/questions/6742923/if-strings-are-immutable-in-net-then-why-does-substring-take-on-time question UPDATE I liked this question so much I just blogged it. See http blogs.msdn.com b ericlippert archive 2011 07 19..
Generate Word document from c# [duplicate] http://stackoverflow.com/questions/6802335/generate-word-document-from-c-sharp unsupported it's somewhat prone to resource issues. I blogged some time ago about inserting images into Word documents using..
|