c# Programming Glossary: modern
Reducing memory usage of .NET applications? http://stackoverflow.com/questions/1343374/reducing-memory-usage-of-net-applications which can take under 6 MB even when playing. I know in modern operating systems this stuff really doesn't matter that much..
Best and shortest way to evaluate mathematical expressions http://stackoverflow.com/questions/1437964/best-and-shortest-way-to-evaluate-mathematical-expressions mathematical expression using C# .net reflection or other modern .net technology c# .net expression evaluation share improve..
Create Excel (.XLS and .XLSX) file from C# [closed] http://stackoverflow.com/questions/151005/create-excel-xls-and-xlsx-file-from-c-sharp and it is in the Excel_97 compatible format that all modern versions of Excel support. The PEAR Excel Writer is here PEAR..
Volatile vs. Interlocked vs. lock http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock lock elsewhere either. It's also very fast as MSDN says on modern CPU's this is often literally a single CPU instruction . I'm..
C# producer/consumer http://stackoverflow.com/questions/1656404/c-sharp-producer-consumer I'm aware but it has some deficiencies It's non generic. A modern version would certainly be generic. It has no way of stopping..
format of for loops http://stackoverflow.com/questions/1783822/format-of-for-loops are irrelevant. But it is reasonable to assume that a modern compiler will produce equally efficient code and I think that..
avoiding null reference exceptions http://stackoverflow.com/questions/1943465/avoiding-null-reference-exceptions Springer 2004 they wrote 1.0 Non Null Types Many errors in modern programs manifest themselves as null dereference errors suggesting..
Tips for optimizing C#/.NET programs [closed] http://stackoverflow.com/questions/2473666/tips-for-optimizing-c-net-programs Performance is a feature. Performance analysis on complex modern systems requires discipline and focus on solid engineering principles..
Why does one often see “null != variable” instead of “variable != null” in C#? http://stackoverflow.com/questions/271561/why-does-one-often-see-null-variable-instead-of-variable-null-in-c in your colleagues' code you educate them in the ways of modern languages and suggest they write the more natural form in future...
Is everything in .NET an object? http://stackoverflow.com/questions/436211/is-everything-in-net-an-object struct. Please post a reference so that it doesn't become modern jackass This American Life . Note that this question refers..
Casting vs using the 'as' keyword in the CLR http://stackoverflow.com/questions/496096/casting-vs-using-the-as-keyword-in-the-clr or is and as are both as fast as as and null check with modern JITs as shown by the code below using System using System.Diagnostics..
Hosting external app in WPF window http://stackoverflow.com/questions/5028598/hosting-external-app-in-wpf-window You can try it. For others applications well today in the modern world we live in you don't host applications ran in external..
Convert DateTime to Julian Date in C# (ToOADate Safe?) http://stackoverflow.com/questions/5248827/convert-datetime-to-julian-date-in-c-sharp-tooadate-safe noon to be the beginning of a new day OADates use the modern definition midnight. The Julian Date of midnight December 30..
Is C# really slower than say C++? http://stackoverflow.com/questions/5326269/is-c-sharp-really-slower-than-say-c in real life. Virtual Machine Like almost any reasonably modern VM Microsoft's for .NET can and will do JIT aka dynamic compilation... expect you can execute a lot of instructions on a modern CPU in the time taken by one cache miss. It's also worth mentioning..
Developing Internet Explorer Extensions? http://stackoverflow.com/questions/5643819/developing-internet-explorer-extensions information in an IE extension In Firefox Chrome Most modern browsers you use window.localStorage but obviously with IE8..
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 and memory copying of fifty bytes is astonishingly fast on modern hardware. That making a new data structure that consists of..
Replacing .NET WebBrowser control with a better browser, like Chrome? http://stackoverflow.com/questions/790542/replacing-net-webbrowser-control-with-a-better-browser-like-chrome like Chrome Is there any relatively easy way to insert a modern browser into a .NET application As far as I understand the WebBrowser.. for CSS js and other web technologies on par with any modern browser Basic browser functions like navigate back reload .....
servicestack REST API and CORS http://stackoverflow.com/questions/8211930/servicestack-rest-api-and-cors public override void Configure Container container Permit modern browsers e.g. Firefox to allow sending of any REST HTTP Method..
|