| c# Programming Glossary: reduceHow to config socket connect timeout in C# http://stackoverflow.com/questions/1062035/how-to-config-socket-connect-timeout-in-c-sharp  there is a long timeout over 15 seconds... How can we reduce this timeout What is the method to config it The code I'm using.. 
 Getting ServiceStack to retain type information http://stackoverflow.com/questions/10750571/getting-servicestack-to-retain-type-information  POCO models it's a cargo cult habit of using interfaces to reduce coupling in application code that's being thoughtlessly leaked.. process boundaries interfaces only adds coupling it's only reduced in code since the consumer has no idea what concrete type to.. 
 Get all associate/composite objects inside an object (in Abstract way) http://stackoverflow.com/questions/11470037/get-all-associate-composite-objects-inside-an-object-in-abstract-way  refers to any implemented abstraction intended to reduce or hide complexity where the underlying details are not completely.. 
 Is shifting bits faster than multiplying and dividing in Java? .NET? http://stackoverflow.com/questions/1168451/is-shifting-bits-faster-than-multiplying-and-dividing-in-java-net  if you happen to be using a power of 2. However it can reduce the clarity of code for some readers and some algorithms. Is.. 
 Reducing memory usage of .NET applications? http://stackoverflow.com/questions/1343374/reducing-memory-usage-of-net-applications  memory usage of .NET applications  What are some tips to reduce the memory usage of .NET applications Consider the following.. 
 How can I easily convert DataReader to List<T>? [duplicate] http://stackoverflow.com/questions/1464883/how-can-i-easily-convert-datareader-to-listt  what LinqToSql does. They save a bit of typing and may reduce the number of errors when coding for DBNull etc. Once you cache.. 
 Color different parts of a RichTextBox string http://stackoverflow.com/questions/1926264/color-different-parts-of-a-richtextbox-string 
 Invert “if” statement to reduce nesting http://stackoverflow.com/questions/268132/invert-if-statement-to-reduce-nesting  &ldquo if&rdquo statement to reduce nesting  When I ran Resharper on my code for example if some.. Resharper gave me the above warning Invert if statement to reduce nesting and suggested the following correction if some condition.. 
 Collection<T> versus List<T> what should you use on your interfaces? http://stackoverflow.com/questions/271710/collectiont-versus-listt-what-should-you-use-on-your-interfaces  by offering a simpler collection class or interface you reduce the number of members that users of your API see and make it.. 
 Why is it important to override GetHashCode when Equals method is overridden? http://stackoverflow.com/questions/371328/why-is-it-important-to-override-gethashcode-when-equals-method-is-overridden  it is common to combine them using code like below to reduce diagonal collisions i.e. so that new Foo 3 5 has a different.. 
 Large Switch statements: Bad OOP? http://stackoverflow.com/questions/505454/large-switch-statements-bad-oop  one of 100 different commands so I'd like to find a way to reduce this monster switch statement to something more manageable... 
 Comparison between XNA and DirectX (C#) http://stackoverflow.com/questions/514872/comparison-between-xna-and-directx-c  the same thing XNA just has a few convenience bits to reduce the amount of boilerplate code you need to write.  share improve.. 
 Automatically INotifyPropertyChanged http://stackoverflow.com/questions/527602/automatically-inotifypropertychanged  for something similar in the past and while it does reduce the amount of code I've had to write it added around 30 seconds.. 
 Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentials http://stackoverflow.com/questions/659013/accessing-a-shared-file-unc-from-a-remote-non-trusted-domain-with-credentials  libraries I could use for that approach but I'd prefer to reduce my dependencies if I can. I've searched MSDN for either a managed.. 
 What task is best done in a functional programming style? http://stackoverflow.com/questions/694651/what-task-is-best-done-in-a-functional-programming-style  programming style and I'm convinced that it will reduce development efforts make code easier to read make software more.. recently I was given a chance to give a talk on how to reduce software development and maintenance efforts and I wanted to.. recently I was given a chance to give a talk on how to reduce software development efforts and I wanted to introduce the concept.. 
 Large WCF web service request failing with (400) HTTP Bad Request http://stackoverflow.com/questions/784606/large-wcf-web-service-request-failing-with-400-http-bad-request  main reason the default 65535 I believe is so low is to reduce the risk of Denial of Service DoS attacks. You need to set it.. 
 Programming to interfaces while mapping with Fluent NHibernate http://stackoverflow.com/questions/845536/programming-to-interfaces-while-mapping-with-fluent-nhibernate  . In my project I am programming to interfaces to reduce coupling etc. That means pretty much everything refers to the.. 
 |