How To
How to Parse RSS and ATOM Feeds in C#
1/17/2025 4:38:22 AM 39
In this article, we’ll learn how to parse RSS and ATOM feeds using C#.
How to read XML in C#
1/17/2025 4:11:50 AM 83
Parsing XML in C# can be done using several approaches, each suitable for different scenarios depending on the complexity of the XML structure and performance requirements.
How to Create Word Document in C#
1/17/2025 3:57:16 AM 55
Creating a Word document programmatically in C# can be achieved using the Microsoft.Office.Interop.Word library.
How to fix 'InvalidOperationException: Scheme already exists: Bearer'
1/17/2025 2:45:51 AM 93
The System.InvalidOperationException: Scheme already exists: bearer error typically occurs when you're working with authentication in a .NET application, and you've registered the Bearer authentication scheme multiple times, which causes a conflict.
How to fix System.InvalidOperationException: Scheme already exists: Identity.Application
1/17/2025 2:08:20 AM 1.28K
How to solve System.InvalidOperationException: 'Scheme already exists: Identity.Application' after identity scaffolding in ASP.NET Core.
How to disable Form Resize on Title Bar Double-Click in C#
1/17/2025 2:06:05 AM 238
To prevent the form from being resized or restored when a user double-clicks on the title bar (or when the title bar is clicked), you can use the WndProc method to intercept and handle Windows messages directly within your form.
Deep Cloning A Connected Graph Of Objects in C#
1/16/2025 7:40:30 AM 51
When programming, you may occasionally need to create a deep copy of a complex data structure.
Determining if Aero is Enabled in C#
1/16/2025 7:38:33 AM 41
While working on a recent project, I needed to adjust the UI based on whether Aero Glass was enabled in Windows.
Taking Screenshots in C#
1/16/2025 7:37:54 AM 74
As developers, we often need to capture screenshots to help illustrate complex code, designs, or issues.
Using the ThreadPool in C#
1/16/2025 7:36:38 AM 47
Multi-threading is a powerful concept that can significantly enhance the performance of applications by allowing multiple tasks to run concurrently.
How to Use Custom Cursors in C#
1/16/2025 7:33:29 AM 75
While .NET offers default cursors, creating a custom cursor can be an exciting way to stand out or cater to specific needs.
Comparing IP Addresses in C#
1/16/2025 7:30:48 AM 70
Comparing two IP addresses in .NET can be surprisingly tricky.