
How to Choose Better Software Tools for Your Business
If you want your business to succeed in the modern world, you need to make sure it’s equipped with all the best software tools. Software boosts your performance in a

If you want your business to succeed in the modern world, you need to make sure it’s equipped with all the best software tools. Software boosts your performance in a

Spring Data’s Query By Example (QBE) API is still one of the simplest ways to build dynamic, type-safe queries without hand-writing JPQL or a Criteria chain. You populate a probe

Some .NET namespaces are unavoidably long, especially around COM interop and older libraries. C# lets you alias them at the top of a file so the rest of your code

We use a lot of ng-templates in our HTML and have cases where we would need to swap one with another based on a condition. ngSwitch comes handy in this

Learn how to use an extension method to update all of the items in a list with C#. public static IEnumerable ForEach(this IEnumerable collection, Action action){ //Loop thru the collection

You can use the yield keyword to hold and return the data to the caller. See below for an example. Public static IEnumerable ExampleMethod(){ List li = new List(); foreach

With the Skip and Take methods in LINQ, paging has become a lot easier. All we need to do is have a simple logic such as is outlined below. This

Tessaract is a popular OCR software that lets you convert image to text with high accuracy. We can utilize its SDK in .Net and convert image to text very easily.

Using the OrderBy operator in conjunction with Take in C#, we can pick a selected number of items based on an order. int n = 3;var firstThreeStates = states.OrderBy(s =