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 moreHow 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 moreHow 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 moreDeep 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 moreDetermining 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 moreTaking 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 moreUsing 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 moreHow 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 moreHow 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 moreImage 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