Back to All Articles

Articles tagged netcore:

Your connection is not private–Google Chrome

Working local, working with https? Got your desktop environment working well, however while using Chrome and browsing you get this "not private" error. You can continue working/browsing if you click through advanced and proceed. This is great but if you are reading this my bet you are looking for a better solution. Read on!

Read More

For many years, dates, times, time zones, new language date types such as datetimeoffset have confused developers. I am writing this in hopes that you can refresh some details about the often used datetimeoffset type.

Read More

In an effort to speed up my development process, I determined that changing the logging level, even in development made a huge difference. Keep this in mind, and let me know if you find this useful.

Read More

Recently, we migrated our applications to latest windows server from 2008 and ran into a number of issues with sockets, connection limits and timeouts. The root of our issues is the default connection limits that we had not encountered before. Below is part of our investigation and subsequent resolution to these issues.

Read More
.NET Standard vs. .NET Core

Core vs. Standard has come up a lot recently. I wanted to re-emphasize the differences here for my own purposes using references mentioned below. Really important to know and understand.

Read More
Nullable Types in .NET Framework

Within the .NET Framework data types such as Boolean can either be true or false. Right? Well, with the release of 2.0 Framework it has been possible to create nullable data types. A nullable type can represent all the values of the underlying type plus empty (or undefined). In the case of our Boolean it would be True/False and Nothing.

Read More