Search
How to Use Select and SelectMany Effectively in LINQ
By Tan Lee Published on Feb 22, 2025 115
When working with LINQ in C#, two of the most commonly used methods are Select and SelectMany.
Read moreHow to Create a PDF document file in C#
By Tan Lee Published on Jul 16, 2024 9.78K
Creating a PDF document in C# using iTextSharp involves several steps.
Read moreHow to Change the Cursor to a Wait Cursor in C#
By Tan Lee Published on Dec 12, 2024 789
To change the cursor to a wait cursor in a C# application, you can use the Cursor.Current property or Cursor class methods available in Windows Forms or WPF.
Read moreHow to Encrypt and Decrypt data using RSA in C#
By Tan Lee Published on Jun 01, 2024 20.77K
Encrypting and decrypting strings using the RSA algorithm in a C# Windows Forms Application involves generating RSA key pairs, encrypting the data with the public key, and decrypting it with the private key.
Read moreHow to Send and Receive email in Microsoft Outlook using C#
By Tan Lee Published on Jun 02, 2017 14.93K
To send and receive emails in C# using Microsoft Outlook, you can use the Microsoft.Office.Interop.Outlook library, which provides a way to interact with Outlook programmatically.
Read moreHow to print a PDF file in C#
By Tan Lee Published on Jul 08, 2024 1.83K
Printing a PDF file in C# can be accomplished using libraries like RawPrint or Adobe Acrobat.
Read moreRight Join in C# LINQ
By Tan Lee Published on Jan 20, 2025 169
A right join in C# LINQ is a type of join that returns all elements from the second (right) data source, even if there are no matching elements in the first (left) data source.
Read moreHow to use Context Menu Strip in C#
By Tan Lee Published on Jul 15, 2017 6K
In a Windows Forms application in C#, a ContextMenuStrip is used to create context menus that appear when you right-click on a control or form.
Read moreHow to Upload and Display Image In PictureBox Using C#
By Tan Lee Published on Jul 17, 2024 11.49K
To upload and display an image in a PictureBox control in a C# Windows Forms Application, you can follow these steps.
Read moreCapturing screenshots in C#
By Tan Lee Published on Feb 17, 2025 373
Capturing screenshots in C# can be done in several ways, depending on the specific requirements of your application (e.g., capturing the entire screen, a specific window, or a selected region).
Read more