Search
How to Create a Splash Screen in C#
By Tan Lee Published on Jun 15, 2024 23.59K
Creating a splash screen in a C# Windows Forms application involves creating a separate form that will be displayed for a short duration when the application starts.
Read moreHow to Convert an image to base64 in C#
By Tan Lee Published on Jun 14, 2024 18.43K
To convert an image to a Base64 string and vice versa in a C# Windows Forms Application, you can follow these steps.
Read moreHow to convert string to list in C#
By Tan Lee Published on Dec 20, 2024 1.01K
In C#, you can convert a string to a list by following these steps.
Read moreHow to Create Word Document in C#
By Tan Lee Published on Jan 17, 2025 388
Creating a Word document programmatically in C# can be achieved using the Microsoft.Office.Interop.Word library.
Read moreHow to Encrypt and Decrypt ConnectionString in App.config file in C#
By Tan Lee Published on Jul 17, 2024 38.4K
Encrypting connection strings in app.config or web.config in C# is a common practice to secure sensitive information such as database credentials.
Read moreC# LINQ Performance Optimization
By Tan Lee Published on Feb 06, 2025 111
LINQ (Language Integrated Query) is a highly effective feature in C# that streamlines complex data manipulations and queries.
Read moreLINQ Extension Methods in C#
By Tan Lee Published on Feb 06, 2025 135
This article explores LINQ (Language Integrated Query) extension methods in C#.
Read moreTuples in C#
By Tan Lee Published on Feb 06, 2025 188
This guide introduces Tuples in C#, offering an exploration of their key features and uses. It aims to provide a thorough understanding of Tuples, highlighting their significance as a versatile and powerful data structure in C#.
Read moreHow to Create a Geo Chart using LiveCharts in C#
By Tan Lee Published on Jun 25, 2024 10.81K
Creating a Geo Chart (GeoHeatMap) using LiveCharts in a C# Windows Forms Application involves a few steps to set up the environment and then configure the chart.
Read moreString to Byte Array Conversion in C#
By Tan Lee Published on Feb 05, 2025 483
This tutorial will explore how to convert strings to byte arrays and vice versa in C#.
Read more