Search

How to Consume RESTful APIs in C#
By Tan Lee Published on Jan 17, 2025 257

When working on a web development project, you'll often find the need to interact with external services or data.

Read more
How to Parse RSS and ATOM Feeds in C#
By Tan Lee Published on Jan 17, 2025 317

In this article, we’ll learn how to parse RSS and ATOM feeds using C#.

Read more
How to disable Form Resize on Title Bar Double-Click in C#
By Tan Lee Published on Nov 26, 2024 835

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.

Read more
Deep Cloning A Connected Graph Of Objects in C#
By Tan Lee Published on Jan 16, 2025 284

When programming, you may occasionally need to create a deep copy of a complex data structure.

Read more
Determining if Aero is Enabled in C#
By Tan Lee Published on Jan 16, 2025 241

While working on a recent project, I needed to adjust the UI based on whether Aero Glass was enabled in Windows.

Read more
Taking Screenshots in C#
By Tan Lee Published on Jan 16, 2025 382

As developers, we often need to capture screenshots to help illustrate complex code, designs, or issues.

Read more
Using the ThreadPool in C#
By Tan Lee Published on Jan 16, 2025 313

Multi-threading is a powerful concept that can significantly enhance the performance of applications by allowing multiple tasks to run concurrently.

Read more
How to Use Custom Cursors in C#
By Tan Lee Published on Jan 16, 2025 589

While .NET offers default cursors, creating a custom cursor can be an exciting way to stand out or cater to specific needs.

Read more
How to draw text on an image in C#
By Tan Lee Published on Nov 15, 2024 435

To draw text on an image in C#, you can use the System.Drawing namespace, which provides the necessary classes like Graphics, Font, Brush, and Image to work with images and text.

Read more
Image Saving, Cropping, and Resizing in C#
By Tan Lee Published on Jan 16, 2025 476

When working with image editing in C#, particularly using GDI+, some tasks can feel cumbersome and repetitive.

Read more