Search
C# String Format
By Tan Lee Published on Dec 13, 2024 434
In C#, the String.Format method is used to format strings by embedding placeholders within a string and then replacing those placeholders with values.
Read moreHow to Export DataTable to Excel without Interop in C#
By Tan Lee Published on Jul 16, 2024 15.51K
You can export a DataTable to an Excel file without using Interop by using the ClosedXML library in C#.
Read moreHow to Insert Update Delete data in Database from DataGridView in C#
By Tan Lee Published on Jul 25, 2017 14.54K
To manage Insert, Update, and Delete operations in a SQL database using a DataGridView in a C# Windows Forms application built with the Metro Framework (Modern UI), follow these steps.
Read moreHow to use Modern UI Metro Framework in C#
By Tan Lee Published on Jul 26, 2017 9.88K
Designing a modern UI for a WinForms application using the Metro Framework is a straightforward process.
Read moreHow to use DevExpress Themes/Skins in C#
By Tan Lee Published on Jun 18, 2017 12.45K
To use the DevExpress Skin Manager in a C# Windows Forms application, you need to follow a few steps to apply and customize the UI skin.
Read moreHow to Create a Metro Login form with SQL Server in C#
By Tan Lee Published on Jun 19, 2017 7.14K
To create a Metro-style login form in C# with SQL Server, follow these steps.
Read moreHow to Create CPU and Memory Monitor using Metro Modern UI in C#
By Tan Lee Published on Jun 03, 2017 8.53K
Creating a CPU and memory monitor in C# with the Metro Framework involves integrating system performance counters and a visually appealing user interface.
Read moreHow to Create a Metro Modern Flat UI Dashboard in C#
By Tan Lee Published on Jun 08, 2017 38.38K
Creating a Metro Modern Flat UI Dashboard in C# using the Metro Framework and Modern UI involves several steps.
Read moreC# FileInfo
By Tan Lee Published on Dec 12, 2024 277
FileInfo is a class in .NET that provides properties and methods for managing files.
Read moreHow to use LINQ to Entities Queries in Entity Framework
By Tan Lee Published on Feb 16, 2024 447
LINQ (Language Integrated Query) is a powerful feature in C# that allows you to query various data sources, including Entity Framework (EF) data contexts.
Read more