Remove c
article thumbnail

C# Coding Convention: Coding Standard in C#

DZone

Coding conventions are a set of guidelines for writing code that is consistent, readable, and comprehensible. They are also sometimes called programming conventions, style guides, or coding standard. These conventions cover various aspects of the code, such as naming conventions, indentation, commenting, and formatting.

Code 225
article thumbnail

Why business digital transformation is still a key C-level priority today

Dynatrace

According to a recent Thomson Reuters survey, nearly 50% of C-level executives said that business digital transformation was their top priority over the next 18 months, followed by reducing costs (44%) and increasing customer satisfaction (44%). And according to Statista , $2.4 trillion will be spent on digital transformation on 2024.

C++ 193
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

How To Generate Code Coverage Report Using JaCoCo-Maven Plugin

DZone

Code coverage is a software quality metric commonly used during the development process that let’s you determine the degree of code that has been tested (or executed). To achieve optimal code coverage, it is essential that the test implementation (or test suites) tests a majority percent of the implemented code.

Code 313
article thumbnail

C# Errors by Example: Checking the DotNetNuke CMS

DZone

Today, we discuss C# code quality and a variety of errors by the example of CMS DotNetNuke. We're going to dig into its source code. DotNetNuke is an open-source content management system (CMS) written mainly in C#. The source code is available on GitHub. You're going to need a cup of coffee. DotNetNuke.

C++ 256
article thumbnail

Sorting in C#: OrderBy.OrderBy or OrderBy.ThenBy? What's More Effective and Why?

DZone

In C#, we can do this with the help of OrderBy().OrderBy() To answer this question, we need to delve into the source code. Suppose we need to sort the collection by multiple keys. OrderBy() or OrderBy().ThenBy(). But what is the difference between these calls? The article has three chapters:

C++ 261
article thumbnail

My new CppCon talk is on YouTube: “Cooperative C++ Evolution – Toward a TypeScript for C++”

Sutter's Mill

At CppCon 2022, I argued for why we should try to make C++ 10x simpler and 50x safer , and this update is an evolution of the update talk I gave at C++ Now in May, with additional news and demos. No one else has tried the TypeScript plan for C++ yet, and I see value in trying it, and so that’s the plan I’m following for cppfront.

C++ 99
article thumbnail

MongoDB SSL with self-signed certificates in C#

Scalegrid

In this blog post, we show you two methods to securely connect to a MongoDB server configured with self-signed certificates for SSL, using the official C# MongoDB driver. How to Connect MongoDB SSL to your C# Application Click To Tweet. Note: All the code samples have been tested using MongoDB Driver v2.8.1 Prerequisites.

C++ 244