Tag: .net

.NET Managed + C Unmanaged: What’s the Cost?

ASP .NET CORE, Languages & Coding • 2 Comments

When I was programming in C#, I used to send all recursive tasks to an unmanaged C code, since the...
Read More

LinqToSolr – use LINQ to obtain data from Solr

Languages & Coding

Due to the fact that in my company, Solr was chosen as a full-text search platform, there appeared a strong desire to simplify the work...
Read More

Functional C#

Basics of C#, Languages & Coding • 3 Comments

C# is a multi-paradigm programming language. Recently, the course has been set towards new functional constructions in C#. We can go...
Read More

Specification Design Pattern in C#

Basics of C# • One Comment

In computer programming, the specification pattern is a particular software design...
Read More

CombGuid: Generation of SQL Server-friendly Guid Values in .NET Applications

Computer Environment, Languages & Coding

Usage of UUID as a primary key for tables has a bunch of pros, including the option to retrieve IDs for objects created in a client...
Read More

Hangfire: Task Scheduler for .NET

ASP .NET CORE, Languages & Coding • 2 Comments

Hangfire is a multi-threaded and scalable task scheduler built on client-server architecture on .NET stack (Task Parallel Library and...
Read More

Precise Computation of CLR Object Size

Computer Environment, Languages & Coding

I think many developers have been wondering: How many bytes does an object instance take in managed...
Read More

Comparing Objects by Value. Part 6: Structure Equality Implementation

Database administration, Database Optimization & Structure

We have already analyzed peculiarities of structs of the .NET framework that represent Value Types when comparing objects by value –...
Read More

Comparing Objects by Value. Part 1. Beginning

Computer Environment, Languages & Coding

It is a common fact that the .NET object model, as well as other software program platforms, allow comparing objects by reference and by...
Read More

Sorting in .NET

ASP .NET CORE, Languages & Coding • 4 Comments

Sorting is a typical task each programmer should be aware of. That’s why this article is...
Read More
Close