Related resources for NET
  • Introduction To Minimal API using ASP.NET Core 811/21/2024 7:52:06 AM. Minimal API in .NET Core 6.0 simplifies the process of creating HTTP APIs by reducing code verbosity and dependencies. It is ideal for microservices, offering advantages like lightweight routing, impr
  • Setup .NET Core on Windows Server with IIS Migration11/21/2024 4:53:48 AM. This guide covers the installation of software required for .NET Core on Windows Server and the process of configuring IIS for hosting .NET Core applications.
  • .NET 9 CountBy: A New LINQ Powerhouse11/20/2024 7:19:31 AM. .NET 9 introduces the CountBy method, a powerful addition to LINQ that enhances querying capabilities. This feature allows developers to count elements based on specified conditions efficiently.
  • Simplify Your Cloud-Native Development With .NET Aspire11/20/2024 6:54:35 AM. This video dives into .NET Aspire, a powerful toolkit designed to streamline and simplify the development process for cloud-native applications using .NET.
  • Apache Kafka with Dapr Bindings in .NET11/20/2024 4:30:36 AM. This content provides an in-depth overview of integrating Apache Kafka with Dapr Bindings for building distributed event-driven applications. It explains the key concepts of Apache Kafka, Dapr, and Da
  • Understanding .NET Binary Serialization11/19/2024 10:13:05 AM. .NET Binary Serialization simplifies the process of converting objects into binary formats for efficient storage or data transfer. This guide explores serialization techniques, the BinaryFormatter cla
  • What's New in ASP.NET Core 9?11/19/2024 10:07:33 AM. C# 13 enhances developer productivity with features like flexible params collections, scoped locks, and partial properties, allowing for streamlined coding, improved performance, and robust thread saf
  • .NET 9 Features with Code Example11/19/2024 4:42:05 AM. Learn how abstraction simplifies complex systems by unifying interfaces, abstract classes, and dependency injection. Build modular, maintainable, and testable applications with this comprehensive guid
  • Explaining Dutch National Flag problem11/19/2024 3:59:58 AM. The problem involves sorting an array containing three distinct values, typically represented as 0s, 1s, and 2s, in a single pass.
  • .NET 9 : Task.WhenEach11/18/2024 11:56:11 AM. In .NET 9, the new Task.WhenEach method enhances asynchronous programming by processing tasks as they complete, allowing for more efficient handling of varying completion times. Happy coding!
  • Using New Generative AI Unified Approach by Microsoft11/17/2024 10:43:03 AM. In this article, we will learn about the Microsoft.Extensions.AI package that is intended to unify and standardize generative AI in .NET
  • Install and Enable IIS Express on Windows 1111/16/2024 10:18:05 AM. Learn how to install and enable IIS Express on Windows 10/11. Follow simple steps to download, install, and activate IIS Express for hosting web applications on your system.
  • The Essential Guide to Blockchain Network Types and Their Application11/15/2024 12:00:36 PM. Blockchain technology has transformed industries by providing secure, decentralized, and transparent systems. It encompasses various types, including public, private, consortium, and hybrid blockchain
  • Repository Pattern in .NET Core for Clean Data Access11/15/2024 11:24:56 AM. Learn how to separate business logic from data logic, enhance testability, and reduce code duplication. By following these best practices, you’ll achieve modular, scalable applications in .NET Core.
  • Increase Application Performance using Task.Run in .NET Core11/15/2024 11:18:38 AM. Explore the power of Task.Run in .NET Core to efficiently handle background tasks like logging, report generation, and email sending, enhancing application performance and responsiveness without block
  • .NET 9 : Params Collections11/15/2024 10:41:05 AM. In .NET 9 the params keyword has been extended to support not only arrays but also other collection types like ReadOnlySpan<T> and IEnumerable<T>. This enhancement offers greater flexibili
  • .NET 9 is Out Now11/15/2024 8:47:33 AM. This article explains in detail the latest release of .NET. The latest .NET ecosystem updates improve performance, security, and productivity across C# 13, ASP.NET Core, EF Core, .NET Runtime, Librari
  • Broadcom Launches VMware Tanzu Platform 10 for Private Cloud Apps11/15/2024 8:22:15 AM. Broadcom launches VMware Tanzu Platform 10, simplifying private cloud app development with reduced costs, enhanced security, and GenAI support for enterprises.
  • Sorting with IComparable in C#11/14/2024 11:00:04 AM. Learn how to implement the IComparable interface in C# to customize sorting behavior for objects. Explore sorting techniques, comparisons, and examples to efficiently order data in collections like li
  • What are Different File Extension in .NET11/14/2024 10:53:32 AM. This article explores key file extensions in ASP.NET, including.ASPX for web pages, which combine HTML and server-side code to generate dynamic content, and .CS for C# source files, essential for defi
  • Deploying ASP.NET Core 9 Application on IIS11/14/2024 8:33:56 AM. Learn how to publish ASP.NET Core 9 applications on IIS. This guide covers key steps such as setting the correct target framework, configuring IIS settings, handling common errors like 503, and using
  • Loading Nested JSON File Data in Dropdown ASP.NET11/14/2024 6:58:43 AM. Learn how to load and bind nested JSON data to a dropdown in ASP.NET, covering both client-side and server-side techniques for dynamic data binding and efficient JSON parsing in web applications.
  • BGP Capabilities and Limitations in Azure11/14/2024 6:57:10 AM. Explore the capabilities and limitations of Border Gateway Protocol (BGP) in Azure, covering its role in Azure networking, routing, VPNs, ExpressRoute, BGP peering, and best practices for cloud connec
  • A File System Manager From Scratch In .NET Core And VueJS11/14/2024 5:58:29 AM. Build a robust file system manager using .NET Core for backend functionality and VueJS for frontend design. Develop RESTful APIs for file handling and create an intuitive user interface for seamless i
  • Understanding IEnumerable In C#11/14/2024 5:49:01 AM. IEnumerable in C# is an interface that defines a standard way to iterate over a collection of objects. The IEnumerable interface in C# provides a standard, efficient way to iterate over collections us
  • Visual Studio Builds and Key Features11/14/2024 5:13:31 AM. Visual Studio Builds Since 2005 and main key features. Explore the growth of Visual Studio, Microsoft's premier Integrated Development Environment, from its inception in 1997 to the latest feature
  • Understanding Keyed Services in .NET 811/13/2024 9:12:24 AM. Keyed Services in .NET 8 enhance dependency injection by allowing multiple implementations of an interface to be registered with unique keys. This enables flexible dependency resolution, ideal for tai
  • Types of Error Handling in Web API .NET 8 with Example11/13/2024 6:37:48 AM. Error handling is a mechanism to take control of unexpected situations that occur in the system during processing and return any helpful error response from a NET 8 Web API. That said, here are some d
  • Beginner's Guide to CRUD Operations in .NET Core 8 Web API11/12/2024 7:30:14 AM. This guide walks you through creating a .NET Core 8 Web API for managing employee data with full CRUD operations. Using Entity Framework Core, you’ll define models, connect to a SQL database, create e
  • KISS - Keep It Simple Stupid11/8/2024 11:39:50 AM. In this video, you will learn how to create scalable, maintainable, and on-budget software while explaining application rewrite - a piece of software with a C# .NET backend and a React front end.
  • Why is Kubernetes Necessary for Modern Applications Deployment?11/8/2024 5:02:35 AM. In this article, we will learn Kubernetes streamlines modern app deployment by orchestrating containers, ensuring scalability, and automating management. It optimizes resources, enhances reliability,
  • Overview of Essential Networking Devices11/8/2024 5:01:07 AM. Networking devices enable data flow and secure communication within networks, connecting computers, servers, and other devices. Examples include routers, switches, modems, access points, and firewalls
  • How to Apply Custom Fonts in .NET MAUI11/7/2024 5:38:25 AM. Learn how to add and apply custom fonts in your .NET MAUI app to enhance design and branding. This guide covers adding font files, registering fonts in MauiProgram.cs, and using them in XAML or C#.
  • Fededim.Extensions: ASP.NET Data Protection Integration11/5/2024 9:59:16 AM. Fededim.Extensions.Configuration.Protected.DataProtectionAPI enables seamless integration between ASP.NET Configuration and the Data Protection API, providing enhanced security for sensitive data in a
  • Handling Transient Failures in .NET 8 With Polly11/5/2024 4:30:31 AM. This article discusses implementing a retry mechanism for handling transient faults in service interactions. It defines transient faults, such as temporary network issues or resource exhaustion, and e
  • Dev Tunnel in Visual Studio Simplifies Local Development11/5/2024 3:40:41 AM. Explore the Dev Tunnel feature in Visual Studio 2022, designed to streamline local development and debugging. This powerful tool allows developers to create a secure connection to their remote environ
  • Creating a CQRS Architecture in .NET Core 811/4/2024 7:29:08 AM. This guide outlines a practical implementation of the CQRS (Command Query Responsibility Segregation) architecture using C# and MediatR, emphasizing the separation of read and write operations for bet
  • Understanding TreeView in .NET Core11/4/2024 5:58:45 AM. The TreeView component in .NET Core is a powerful UI element that displays hierarchical data in a tree-like structure, allowing users to navigate through items easily.
  • Increase UI Performance using Timeout Middleware in .NET Core11/4/2024 5:26:04 AM. Timeout Middleware in .NET Core is crucial for handling long-running requests by setting specific time limits for responses. It improves application reliability, manages resources efficiently, enhance
  • Explaning IExceptionFilter in .NET Core11/4/2024 4:16:41 AM. This article explores ASP.NET Core's `IExceptionFilter`, which enables centralized exception handling. It highlights its advantages, such as separation of concerns, consistent error responses, and
  • Fix: GitHub Access Error - Failed to Connect to github.com port 443, Time Out11/1/2024 9:39:04 PM. This article discusses a bug in access to GitHub.
  • Git GUI Clients (2), VS Code11/1/2024 8:25:54 PM. This series explores various Git GUI clients like Visual Studio, VS Code, GitHub Desktop, TortoiseGit, and SmartGit, focusing on their features for repos management, interaction between local and remo
  • Understanding API Gateways in Microservices11/1/2024 5:34:50 AM. The API Gateway pattern centralizes client requests, managing authentication, logging, rate limiting, and load balancing, optimizing resilience and scalability in complex microservice architectures th
  • Entity Framework (3), with .Net MVC, Model-First10/31/2024 9:05:22 PM. This article will discuss Entity Framework with .Net MVC, Model-First approach
  • Dependency Injection & EF Migrations in ASP.NET MVC with Autofac10/30/2024 8:29:43 AM. This article demonstrates how to implement Dependency Injection (DI) using Autofac in an ASP.NET MVC application and integrate Entity Framework for database operations, including migrations.
  • Integrating OpenAI's Assistant API in .NET Applications10/30/2024 5:41:53 AM. Integrating OpenAI's Assistant API in .NET empowers developers with advanced natural language processing capabilities. Using C# and Visual Studio, set up your project, manage API credentials secur
  • JWT Token Based Implementation using ASP.NET Core Web API10/29/2024 6:30:51 AM. JWT (JSON Web Token) is a way to share information securely between two or more systems and JWT structure allows for secure information exchange and user authentication.
  • Create a Model with Database Table in .NET 8 using EF Core10/28/2024 7:16:12 AM. This article guides you through creating a data-driven application using .NET 8 and Entity Framework Core. You'll learn to define a model, configure a DbContext, set up a SQL Server connection str
  • DDoS Attacks and Prevention using .NET Core10/28/2024 6:30:12 AM. This article covers the basics of DDoS (Distributed Denial of Service) attacks and prevention methods in .NET Core. It explains how to identify DDoS symptoms and apply preventive techniques, including
  • How to Create and Use Key Vault References in .NET Core Web API10/28/2024 4:14:04 AM. Azure App Configuration allows your application to use Key Vault references by creating keys that point to values stored in Key Vault. Rather than storing sensitive data directly, App Configuration us
  • Explaining IAuthorizationFilter in .NET Core10/27/2024 12:10:00 PM. In this article, we delve into the IAuthorizationFilter interface in .NET Core, exploring its role in implementing authorization logic for web applications. We cover how to create custom filters, mana
  • Understanding the Role of Servers in Modern Networking10/25/2024 4:56:40 AM. Servers play a crucial role in modern networking by managing data storage, processing, and communications across networks. From web hosting and cloud computing to secure data transfer, servers enable
  • Domain-first GraphQL API Platforms for Your .NET Stack10/24/2024 12:00:55 PM. In this video, we'll demo how .NET developers can use modern architecture and data storage to build scalable GraphQL APIs for real-time data and AI integration.
  • Rockin’ The Code World with dotNetDave - Ep. 10610/23/2024 8:13:19 AM. In this episode, we’ll dive deep into the latest programming trends.
  • Mastering API Testing with Api.http Files in .NET Projects10/23/2024 6:06:57 AM. The Api.http file in a .NET project is a text file containing one or more HTTP requests that can be executed directly from the development environment, such as Visual Studio or Visual Studio Code. Thi
  • Example of Aspect Oriented Paradigm with DispatchProxy Class 10/23/2024 5:25:01 AM. This article explores how to implement cross-cutting concerns in .NET using the DispatchProxy class. It demonstrates dynamic proxy creation for logging and other concerns, highlighting the benefits of
  • ASP.NET Core Middleware10/22/2024 11:57:39 AM. ASP.NET Core Middleware plays a crucial role in the request processing pipeline of web applications. It allows developers to add custom functionalities, such as authentication, logging, and error hand
  • Array to Text File: Detailed Overview of ArrayIOExtensionsLib Class10/22/2024 10:04:42 AM. This article provides a comprehensive overview of the ArrayIOExtensionsLib class, detailing its functionality for converting arrays to text files in C#. We explore its key features, methods, and pract
  • Enable Specific Dates By Using Bootstrap Date Picker In ASP.NET MVC10/21/2024 10:04:08 AM. This article explains how to enable specific dates using the Bootstrap Date Picker plugin with an array object. It demonstrates how to set a date range, format dates, and customize date selection usin
  • Boyer-Moore Majority Vote Algorithm10/21/2024 4:08:19 AM. The Boyer-Moore Majority Vote Algorithm efficiently finds elements appearing more than a fraction of the time in linear time and constant space, using two candidates and counters to track occurrences.
  • Why In ASP.NET Core logging is often implemented as a singleton10/20/2024 9:31:50 AM. In ASP.NET Core, logging is often implemented as a singleton to ensure efficient resource usage, centralized management, and thread-safe logging across the application.
  • Azure service bus queue with .net core and python10/20/2024 9:30:13 AM. This article demonstrates how to implement Azure Service Bus queues using both .NET Core and Python. It covers creating a message sender with a web API in .NET Core and a receiver using a console app.
  • Training on using WebForms Core Technology to Upload Images10/19/2024 2:52:21 PM. In this article, using WebForms Core technology, we will teach you how to send images to the server and display the images sent in the client.
  • Creating and Opening Microsoft Word Document from .NET Using C#10/15/2024 11:54:12 AM. This article explores how to manipulate Microsoft Word documents using C# in a Windows Forms application. It covers adding a COM reference for Word, creating instances of the Word application, and uti
  • Using XML and XSLT10/15/2024 11:27:26 AM. XSLT (XML Stylesheet Transformation) is a powerful language used for converting XML documents into various formats. It utilizes an XSLT processor to parse input XML and the associated stylesheet, exec
  • How to Configure Azure NAT Gateway?10/15/2024 8:30:00 AM. Azure NAT Gateway is a fully managed service that provides secure, scalable outbound connectivity for resources in virtual networks. It ensures static outbound IPs, prevents SNAT exhaustion, and enhan
  • Validation of Complex Objects in Multi-Lingual Environment Using DynamicVNET With ASP.NET Core10/14/2024 9:58:53 AM. DynamicVNET is a lightweight, rule-based validation library for .NET applications, designed to validate POCOs while adhering to the Single Responsibility Principle (SRP). It integrates seamlessly with
  • Resume Processing with Azure Document Intelligence Studio, .NET and Angular10/14/2024 6:49:29 AM. Imagine you’re a recruiter swimming in a sea of resumes. It’s overwhelming, right? Enter our hero: a custom model that simplifies the job by automatically extracting all the important bits from resume
  • Parallel Task in .Net 4.010/14/2024 6:07:08 AM. Today I will be talking about a new feature of Parallel Programming that was added to .Net 4.0.
  • Explaining IResultFilter in ASP.NET Core10/14/2024 6:03:23 AM. This article explores the ASP.NET Core `IResultFilter`, which allows custom logic execution before and after an action result. It discusses advantages and disadvantages and includes an implementation
  • Calling Web API to Web API without User Interaction by using Azure Managed Identity10/14/2024 5:59:13 AM. This article will walk you through connecting two web APIs without any login or user interaction. It is referred to as "Server-to-Server" or "Service-to-Service" communication. You
  • Minimal APIs or Controllers in ASP.NET Core10/14/2024 5:56:00 AM. In ASP.NET Core, developers can choose between Minimal APIs and Controllers for building web APIs. Minimal APIs offer a lightweight, streamlined approach with simpler routing, while Controllers follow
  • The OSI Model: Exploring the Seven Layers of Networking10/12/2024 5:19:26 AM. The OSI model is a framework that standardizes network communication into seven layers, facilitating interoperability, troubleshooting, and consistent practices across different networks and protocols
  • Customizing HTTP Headers with Middleware in ASP.NET Core10/12/2024 4:26:09 AM. In this article, we explore how to modify HttpResponse using custom middleware in ASP.NET Core. We create a custom middleware that injects headers into the response. By adding conditions, specific API
  • Entity Framework (13), with .Net Core Code-First Summary10/11/2024 4:35:11 PM. This is a summary article to discuss .Net Core Entity Framework Code First Approach.
  • ASP.NET Web Configuration File10/11/2024 12:30:22 PM. Configuration file is an important file in ASP.NET. Learn, what is a Web.Config file? What is in Web.config files? What are the different types of Configuration files in ASP.NET? Machine.config File v
  • ASP.NET Core - CRUD With React.js And Entity Framework Core10/11/2024 12:27:56 PM. Discover how to implement CRUD (Create, Read, Update, Delete) operations, set up a RESTful API, and manage data effectively. Enhance your web development skills with practical examples and best practi
  • Filters in ASP.NET MVC10/11/2024 12:26:53 PM. In this article you will learn about Filters in ASP.NET MVC 5.0. ASP.NET MVC Filters are used to inject extra logic at the different levels of MVC Framework request processing. Filters provide a way f
  • Multiple File Upload in ASP.NET With Example10/11/2024 12:25:08 PM. The FileUpload control in ASP.NET enables users to upload files to the server easily. It features a text box and a browse button for file selection. The control supports multiple file uploads when set
  • Building a Blazor Server App to Fetch RSS Feeds Using .NET Core10/11/2024 8:54:06 AM. In this article, we will explore how to build a Blazor Server app using .NET Core 6.0 to fetch and display RSS feeds. You’ll learn about setting up the Blazor environment, using HTTP clients for data
  • Scaffolding ASP.NET Core MVC10/11/2024 6:03:08 AM. In this article, you will learn about scaffolding ASP.NET Core MVC.
  • What is JSON and Why Is It So Important?10/10/2024 9:39:39 AM. JSON (JavaScript Object Notation) is a lightweight, language-independent data format that represents key-value pairs, supporting strings, numbers, arrays, objects, and complex structures widely used f
  • Importing .NET Core APIs into Postman10/10/2024 5:42:24 AM. Explore how to test, debug, and document your APIs effectively. From setting up Postman collections to handling HTTP requests and authentication, this guide simplifies API testing and integration.
  • Descending DropDown List In ASP.NET10/8/2024 9:27:53 AM. Learn how to sort a DropDown List in ASP.NET in descending order using C#. This tutorial covers data binding, sorting logic with LINQ, and implementing dropdown controls in ASP.NET Web Forms or MVC ap
  • Angular, Bootstrap and ASP.NET MVC - Bootstrap Form Controls - Part Eight10/8/2024 9:02:05 AM. In this article, we explore integrating Bootstrap form controls within an AngularJS and ASP.NET MVC application. We cover essential features like date and time pickers, typeahead suggestions, and inte
  • Session In ASP.NET10/8/2024 8:56:35 AM. Learn how to implement session state, manage session variables, and enhance security while optimizing performance. Understand the differences between ASP.NET Web Forms and ASP.NET Core sessions, ensur
  • Displaying Partial View On Condition in Web API10/8/2024 8:53:24 AM. This article explains how to create and display partial views conditionally in an ASP.NET MVC Web API application. By selecting a value from a drop-down list and submitting it, the corresponding parti
  • Difference Between MVC and Web API10/8/2024 8:51:17 AM. This article explores the differences between ASP.NET MVC and Web API, focusing on their roles, use cases, and key features. MVC is used for creating web applications with data and views, while Web AP
  • Create Web API in MVC 610/8/2024 8:48:58 AM. Learn how to create a Web API using ASP.NET MVC 6 in this comprehensive guide. We’ll cover essential topics like setting up the MVC framework, building API controllers, implementing RESTful services,
  • Logging Errors With Error Logging Modules And Handlers (ELMAH) in ASP.NET MVC 410/8/2024 8:33:16 AM. Error Logging Modules and Handlers (ELMAH) is an alternative to Health Monitoring System (HMS) for logging errors and is free and available under an open-source license created and managed by Atif Azi
  • Understanding ASP.NET Session State10/8/2024 4:03:08 AM. ASP.NET Session State is a method for managing user data during a web session. It enables storing and retrieving session-specific information like user preferences, shopping carts, and login status.
  • Simple Load Balancer in .NET Core with YARP10/8/2024 3:40:14 AM. Load balancing ensures efficient traffic distribution in distributed systems. YARP enables load balancing with sticky sessions for consistent routing, improving scalability, performance, and availabil
  • Why Choose Azure Firewall for Network Security10/7/2024 11:35:51 AM. Discover the benefits of Azure Firewall for enhancing network security in your organization. This robust cloud-based solution offers advanced threat protection, application filtering, and traffic cont
  • Using Log4net to Log Exceptions in ASP.NET10/6/2024 2:59:46 PM. In this guide, we explore how to effectively use Log4net for logging exceptions in ASP.NET applications. You'll learn how to configure Log4net, implement logging best practices, and capture detail
  • Real-World Expression Trees: Dynamic Filtering in C# with Minimal API10/6/2024 7:51:48 AM. This article explores the practical use of expression trees in C# by building an ASP.NET Core web API with dynamic filtering functionality. It demonstrates how to construct flexible queries using expr
  • Understanding Wi-Fi Technology: Standards, Strengths, & Weaknesses10/5/2024 6:37:31 AM. This document provides an overview of Wi-Fi technology, covering its key standards, strengths like wireless connectivity and easy setup, and weaknesses such as limited range and security risks. It als
  • Exploring Network Topologies10/5/2024 6:02:32 AM. Network topologies define the structure of a network, with common types like Bus, Ring, Star, Mesh, and Hybrid, each offering unique advantages and suited for different network needs
  • Running a Standard .NET Console Application in Docker Container10/3/2024 11:49:35 AM. We'll cover the essentials of containerization, including setting up your Docker environment, creating a Dockerfile, building your application image, and deploying it for seamless execution. Enhan
  • How To Create ASP.NET Core MVC Application10/3/2024 11:48:21 AM. This tutorial covers setting up your development environment, creating controllers, models, and views, and building a fully functional web application using the ASP.NET Core MVC framework.
  • Uploading Multiple Files With ListBox in ASP.NET10/3/2024 11:40:19 AM. This article explains how to upload multiple files using a ListBox control in ASP.NET. Unlike the standard FileUpload control, which supports single file uploads, this method combines FileUpload with
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download