Categories

Web DevelopmentProgrammingDatabaseWindowsLinuxNetworkingMobile DevicesRaspberry PiPythonCJavaOtherSponsored

PROGRAMMING Articles

Install and configure log4net in C# .NET

log4net is one of the most popular logging tools for .NET application. This tutorial demonstrates how to install and configure log4net on a C# .NET application.

C#: List All Work Items in an Azure DevOps Project

Learn how to programmatically list ALL work items in a Azure DevOps Project by consuming REST API calls from a C# console application.

C# Console App to Record and Playback Mouse Movements

Here is a simple C# console application that uses Win32 API function calls GetCursorPos and SetCursorPos to record and playback mouse movements.

VB.Net : Prevent user entering text not in a combobox list

How to prevent users from entering text in a VB.net combobox that does not exist in the dropdown list.

How to make POST requests to a REST API endpoint using C#

This article demonstrates how to make a POST request to a REST API endpoint using C# and the HttpClient class.

Configure log4net to log to two different log files

Learn to create named loggers and configure the root logger in log4net to write logs to different log files.

Flatten a nested or multi dimensional array in PHP

Program to convert a multidimensional array to single dimension using RecursiveArrayIterator(), RecursiveIteratorIterator() and iterator_to_array()

C#: Deleting Test Runs in Azure DevOps using REST API

This is a simple C# console application that uses REST API to delete test runs from your Azure DevOps project.

Implementing Jenkins one-at-a-time hash function in VB.NET

How to implement Jenkins one at a time hash in VB.NET. Jenkins one at a time hash is a hash function that produces a 4 byte hash value from a multi-byte input.

How to make GET requests to a REST API endpoint using C#

This article demonstrates how to make a simple GET request to a REST API endpoint using C# and the HttpClient class.