c# Programming Glossary: recommendation
Getting ServiceStack to retain type information http://stackoverflow.com/questions/10750571/getting-servicestack-to-retain-type-information Animal to either be an Interface or an abstract class the recommendation however is not to use inheritance in DTOs. share improve this..
GC.Collect() http://stackoverflow.com/questions/1149197/gc-collect GC.Collect. GC.Collect is there for a reason here are my recommendation of when and why to call GC.Collect. In General don't worry about.. GC decides if it is a good time to collect. Don't take my recommendation is a general statement for calling GC.Collect you should always..
Recommended math library for C#/.NET? [closed] http://stackoverflow.com/questions/1387430/recommended-math-library-for-c-net is Math.NET which is free and open source. Do you have any recommendation for good math libraries free ones are preferable of course but..
REST service authentication http://stackoverflow.com/questions/14996673/rest-service-authentication the need to share your users username and password. My recommendation would be to go with Basic Authentication if this fits your case..
ReSharper Warning - Access to Modified Closure [duplicate] http://stackoverflow.com/questions/1688465/resharper-warning-access-to-modified-closure the variable inside the local context the for loop . The recommendation sounds like a bug in Resharper's parsing of that code. However..
How do I protect this function from SQL injection? http://stackoverflow.com/questions/1862036/how-do-i-protect-this-function-from-sql-injection injection share improve this question The most common recommendation to fight SQL injection is to use an SQL query parameter several.. This is standard in every implementation of SQL. My recommendation for protecting against SQL injection when you have a table name..
avoiding null reference exceptions http://stackoverflow.com/questions/1943465/avoiding-null-reference-exceptions Here are some ideas on how to prevent these errors. My top recommendation for people who care about software quality and are also using..
Single-assembly multi-language Windows Forms deployment (ILMerge and satellite assemblies / localization) - possible? http://stackoverflow.com/questions/1952638/single-assembly-multi-language-windows-forms-deployment-ilmerge-and-satellite-a anywhere. UPDATE 1 Basic Solution Following casperOne's recommendation below I was finally able to make this work. I'm putting the..
Encryption compatable between Android and C# http://stackoverflow.com/questions/2090765/encryption-compatable-between-android-and-c-sharp is specified for this in the Android example . Also a recommendation on a good way of encoding the encrypted string for transmission..
Windows shell extension with C# http://stackoverflow.com/questions/2194572/windows-shell-extension-with-c-sharp process extensions has been revised and it continues the recommendation against writing shell extensions and Internet Explorer extensions..
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 IMyClass When I Run Code Analysis i get the following recommendation. Warning 3 CA1002 Microsoft.Design Change 'List' in 'IMyClass.GetList..
AppFabric caching examples using c# [closed] http://stackoverflow.com/questions/4739548/appfabric-caching-examples-using-c-sharp the configuration from your web.config app.config file. My recommendation is that you keep your config information in your .config file..
Is there any way to start a GUI application from a windows service on Windows 7? http://stackoverflow.com/questions/5063731/is-there-any-way-to-start-a-gui-application-from-a-windows-service-on-windows-7 session through a pipe or some other IPC mechanism. The recommendation that services do not present UI is more than 10 years old now...
Is IDependencyResolver an anti-pattern? http://stackoverflow.com/questions/5653783/is-idependencyresolver-an-anti-pattern of Dependency Injection. Nevertheless I couldn't find any recommendation against the use of the ASP.NET MVC's dependency resolution implementation...
How to set Control Template in code? http://stackoverflow.com/questions/5755455/how-to-set-control-template-in-code the Load method of the XamlReader class. I wonder if this recommendation is such a good idea. Personally i would still go with defining..
What's the best way to learn C# quickly? [closed] http://stackoverflow.com/questions/72893/whats-the-best-way-to-learn-c-sharp-quickly C#. I can't quite figure out how I learned. My only recommendation has been to check out MSDN Beginner Developer Learning Center..
How to elegantly deal with timezones http://stackoverflow.com/questions/7577389/how-to-elegantly-deal-with-timezones share improve this question Not that this is a recommendation its more sharing of a paradigm but the most agressive way I've..
OData with ServiceStack? http://stackoverflow.com/questions/9577938/odata-with-servicestack could potentially break existing clients. ServiceStack's recommendation is having your clients binded to a well defined service layer..
|