Smartcoder zone is specialized in development of custom solutions in software development
SQL Tips and Tricks: Indexing Dos and Don’ts
Get link
Facebook
X
Pinterest
Email
Other Apps
SQL Tips and Tricks: Indexing Dos and Don’ts: Indexing is such a large subject that getting a handle on what to do and what not to do when you're developing your indexing strategie...
These days in web application, performance is very crucial from user and business point of view. Everyone wants better performance and response from web application. In this tip, I am going to highlight ways to improve performance from Internet information server serving faster web pages to your users. https://www.codeproject.com/Tips/832570/IIS-Performance-Improvement
1. Knowing when to use StringBuilder You must have heard before that a StringBuilder object is much faster at appending strings together than normal string types. The thing is StringBuilder is faster mostly with big strings. This means if you have a loop that will add to a single string for many iterations then a StringBuilder class is definitely much faster than a string type. However if you just want to append something to a string a single time then a StringBuilder class is overkill. A simple string type variable in this case improves on resources use and readability of the C# source code. Simply choosing correctly between StringBuilder objects and string types you can optimize your code. 2. Comparing Non-Case-Sensitive Strings In an application sometimes it is necessary to compare two string variables, ignoring the cases. The tempting and traditionally approach is to convert both strings to all l...
Being a web developer is not an easy task. Programming in ASP.NET requires a lot of hard work and brains. Many small things seem difficult sometimes and require a lot of time. This could be frustrating and might lead to less productivity. Therefore, this article is aimed to those ASP.NET developers who go through these sort of situations. It will provide them with some .NET tricks that might be of some help to them. Our article would provide some .NET tips and tricks that could make your problems disappear. Apart from that, C# tips will also be provided. First of all, I would like to start by sharing some useful .NET tricks with all the readers. http://www.c-sharpcorner.com/article/tips-and-tricks-of-net-and-c-sharp-and-overview-of-microsoft-big-data-solutions/
Comments
Post a Comment