| c# Programming Glossary: luckilyUsing Side-by-Side assemblies to load the x64 or x32 version of a DLL http://stackoverflow.com/questions/108971/using-side-by-side-assemblies-to-load-the-x64-or-x32-version-of-a-dll  found because we've hidden it in platform subdirectories . Luckily our custom resolver knows our trickery and based on the current.. 
 Open link in new TAB (WebBrowser Control) http://stackoverflow.com/questions/1286746/open-link-in-new-tab-webbrowser-control  are not optimal and are bound to fail in corner cases. Luckily there is a relatively simple way of accomplishing this while.. 
 ASP.NET C# Static Variables are global? http://stackoverflow.com/questions/1563171/asp-net-c-sharp-static-variables-are-global  page thus their own instance of the '_groupId' variable. Luckily it was all taking place on a dev staging database not the live.. 
 How useful is C#'s ?? operator? http://stackoverflow.com/questions/1689530/how-useful-is-cs-operator  has a Safe Navigation operator and it's very handy. Luckily it seems that the C# team is aware of this feature gap. See.. 
 What ORM for .net should I use? http://stackoverflow.com/questions/1691575/what-orm-for-net-should-i-use  considered a sore point of NH ever since LINQ came about. Luckily there's now a new kid in town NHibernate LINQ which maps LINQ.. 
 XSD.exe and “Circular Group references” http://stackoverflow.com/questions/2388844/xsd-exe-and-circular-group-references  an XML file created by a third party application. Luckily the developer of the 3rd party application included a schema.. 
 Can Unity be made to not throw SynchronizationLockException all the time? http://stackoverflow.com/questions/2873767/can-unity-be-made-to-not-throw-synchronizationlockexception-all-the-time  calls SetValue without calling GetValue first. Luckily Unity is extensible enough that with enough bloody mindedness.. 
 Capturing mouse/keyboard events outside of form (app running in background) http://stackoverflow.com/questions/3312752/capturing-mouse-keyboard-events-outside-of-form-app-running-in-background 
 Why IsNan is a static method on the Double class instead of an instance property? http://stackoverflow.com/questions/370859/why-isnan-is-a-static-method-on-the-double-class-instead-of-an-instance-property  there is a performance benefit from having it static Luckily extension methods still count as static so you get to retain.. 
 Page.User.Identity.IsAuthenticated still true after FormsAuthentication.SignOut() http://stackoverflow.com/questions/4050925/page-user-identity-isauthenticated-still-true-after-formsauthentication-signout  is not updated when you call FormsAuthentication.SignOut . Luckily Page.User pulls its value from Context.User which can be modified.. 
 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  And a lot of code to write each time you need a client. Luckily I found a few other workarounds such as this one on IServiceOriented.. 
 String vs. StringBuilder http://stackoverflow.com/questions/73883/string-vs-stringbuilder  the two I now think about it a little more carefully. Luckily it's relatively straightforward to run perf analysis on your.. 
 When is ObjectQuery really an IOrderedQueryable? http://stackoverflow.com/questions/9025137/when-is-objectquery-really-an-iorderedqueryable  that both return the same type but in a different wrapper. Luckily so because now we can apply ThenBy after OrderBy was called... 
 Entity Framework 4.3 - TPH mapping and migration error http://stackoverflow.com/questions/9499702/entity-framework-4-3-tph-mapping-and-migration-error  and 4.3.1. We found it too late to put the fix in 4.3.1. Luckily there is a fairly simple way to change your code that should.. 
 |