c# Programming Glossary: iirc
What are the pros and cons of writing C#/Xaml vs. C++/Xaml WinRT applications in Windows8? [closed] http://stackoverflow.com/questions/10031929/what-are-the-pros-and-cons-of-writing-c-xaml-vs-c-xaml-winrt-applications-in choose C or .NET. C will give you faster startup times. IIRC .NET 4.5 has auto NGENing abilities not sure how it related.. important on resource constrained devices such as tablets. IIRC .NET 4.5 has more mitigations into GC pauses which can cause..
Storing more information using FormsAuthentication.SetAuthCookie http://stackoverflow.com/questions/1149996/storing-more-information-using-formsauthentication-setauthcookie a pity Microsoft has discarded historical Connect items. IIRC the two techniques they suggested were Use WebConfigurationManager..
What represents a double in sql server? http://stackoverflow.com/questions/1209181/what-represents-a-double-in-sql-server 64 bit double type in .NET slight difference in mantissa IIRC but it's a close enough match most uses. To make things more..
Calling constructor overload when both overload have same signature http://stackoverflow.com/questions/1293201/calling-constructor-overload-when-both-overload-have-same-signature we scrapped it. Unfortunately it is not as simple as that. IIRC the CLI rules say that an implementation is allowed to reject..
Serialize a Static Class? http://stackoverflow.com/questions/1293496/serialize-a-static-class
C#: How to remove a lambda event handler [duplicate] http://stackoverflow.com/questions/1362204/c-how-to-remove-a-lambda-event-handler this question The C# specification explicitly states IIRC that if you have two anonymous functions anonymous methods or..
Quick and Simple Hash Code Combinations http://stackoverflow.com/questions/1646807/quick-and-simple-hash-code-combinations to find an article where this was discussed in detail IIRC no one really knows why it works well but it does. It's also..
How do I get around application scope settings being read-only? http://stackoverflow.com/questions/1687321/how-do-i-get-around-application-scope-settings-being-read-only security issues in the next paragraph XmlReader XmlWriter IIRC if an application tries to write to its Program Files folder..
Does garbage collector call Dispose()? http://stackoverflow.com/questions/1691846/does-garbage-collector-call-dispose pattern The docs on IDisposable explain it quite well IIRC. EDIT changed destructor to finalizer I'm showing my C background..
C# WebBrowser Control - Uploading Files Not Working - Need Assistance http://stackoverflow.com/questions/18687876/c-sharp-webbrowser-control-uploading-files-not-working-need-assistance do is indeed a legit scenario for UI testing automation. IIRC in early versions of IE it was possible to populate the input..
Why does this simple .NET console app have so many threads? http://stackoverflow.com/questions/3476642/why-does-this-simple-net-console-app-have-so-many-threads threads the main thread the GC thread the finalizer thread IIRC. The other threads you see are debugger related threads. share..
Does lock() guarantee acquired in order requested? http://stackoverflow.com/questions/4228864/does-lock-guarantee-acquired-in-order-requested synchronization locking share improve this question IIRC it's highly likely to be in that order but it's not guaranteed...
OutOfMemoryException on declaration of Large Array http://stackoverflow.com/questions/4815461/outofmemoryexception-on-declaration-of-large-array over 5GB. The CLR has a per object limit of around 2GB IIRC even for a 64 bit CLR. In other words it's not the total amount..
How do I suspend painting for a control and its children? http://stackoverflow.com/questions/487661/how-do-i-suspend-painting-for-a-control-and-its-children controls drawing whilst you update them and can be applied IIRC to the parent containing panel. This is a very very simple class..
how to replace characters in a array quickly http://stackoverflow.com/questions/5261858/how-to-replace-characters-in-a-array-quickly buffer i ' ' break If you have more characters five or six IIRC the compiler will actually create a hash table to look up the..
Is DataContract attributes required for WCF http://stackoverflow.com/questions/5921635/is-datacontract-attributes-required-for-wcf It will work without them but for the wrong reasons IIRC originally it didn't work without formal markers . share improve..
Using Recursion in C# http://stackoverflow.com/questions/610743/using-recursion-in-c-sharp recurse will depend on The stack size which is usually 1MB IIRC but the binary can be hand edited I wouldn't recommend doing..
Track all object references in C# http://stackoverflow.com/questions/707421/track-all-object-references-in-c-sharp
Optimizing Lookups: Dictionary key lookups vs. Array index lookups http://stackoverflow.com/questions/908050/optimizing-lookups-dictionary-key-lookups-vs-array-index-lookups of behavior expected performance decrease by a factor of 8 IIRC a Dictionary has on average O 1 lookups while an array has worst..
|