c# Programming Glossary: discussing
.NET Compact Fw 3.5: Background worker http://stackoverflow.com/questions/1323596/net-compact-fw-3-5-background-worker share improve this question There is an MSDN site discussing the Background Processing Techniques on the CF . The most common..
Can someone demystify the yield keyword? http://stackoverflow.com/questions/1330489/can-someone-demystify-the-yield-keyword blog now has 7 entries and that is just the recent ones discussing yield . I have a vast amount of respect for Eric but his blog..
Why is there no overload of Interlocked.Add that accepts Doubles as parameters? http://stackoverflow.com/questions/1400465/why-is-there-no-overload-of-interlocked-add-that-accepts-doubles-as-parameters is supported on 64bit platforms. Here's a great article discussing lock semantics on the instruction level . share improve this..
What are the pros and cons to keeping SQL in Stored Procs versus Code http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code SQL in your C# source code or in Stored Procs I've been discussing this with a friend on an open source project that we're working..
Write to a File in Monotouch http://stackoverflow.com/questions/1829954/write-to-a-file-in-monotouch too much than too little and to add a bit of the why when discussing the how ... You have a few options of course . I'm assuming..
Does HttpListener work well on Mono? http://stackoverflow.com/questions/2923966/does-httplistener-work-well-on-mono differently. Could anyone point me towards some resources discussing this module please Many thanks Bill billpg.com A little background..
Do interfaces derive from System.Object? C# spec says yes, Eric says no, reality says no http://stackoverflow.com/questions/3236305/do-interfaces-derive-from-system-object-c-sharp-spec-says-yes-eric-says-no-re a conversation between Neal Gafter and Eric at NDC discussing exactly this point... I believe section 4.2.2 of the spec is..
Units of measure in C# - almost http://stackoverflow.com/questions/348853/units-of-measure-in-c-sharp-almost in this subject area here is a link to a paper from 1997 discussing a different kind of solution not specifically for C# c# f#..
Why are private fields private to the type, not the instance? http://stackoverflow.com/questions/6983553/why-are-private-fields-private-to-the-type-not-the-instance to private fields is on a type not an instance. I've been discussing this with a colleague and we're trying to come up with a reason..
Should C# methods that *can* be static be static? [closed] http://stackoverflow.com/questions/731763/should-c-sharp-methods-that-can-be-static-be-static Should C# methods that can be static be static We were discussing this today and I'm kind of on the fence. Imagine you have a..
Reference equality performance difference? ((object)obj1 == (object)obj2) vs. object.ReferenceEquals( obj1, obj2 ) http://stackoverflow.com/questions/735554/reference-equality-performance-difference-objectobj1-objectobj2-vs-ob confusing to some programmers. I've just found an article discussing this. It prefers object x y because the IL footprint is smaller...
Why do UI Controls in WPF have Thread Affinity? http://stackoverflow.com/questions/8733303/why-do-ui-controls-in-wpf-have-thread-affinity There are really two core concepts to understand when discussing concurrency in WPF the dispatcher and thread affinity. During..
How to speed adding items to a ListView? http://stackoverflow.com/questions/9008310/how-to-speed-adding-items-to-a-listview a look maybe I missed something. Here's another blog post discussing ListView performance among other things. It seems to indicate..
LINQ: Not Any vs All Don't http://stackoverflow.com/questions/9027530/linq-not-any-vs-all-dont that method works a bit like ... I might do if we were discussing the theory rather than the impact . public static bool All TSource..
|