Search

How to Convert byte array to hex string in C#
By Tan Lee Published on Oct 29, 2024 486

To convert a byte array to a hex string in C#, you can use the BitConverter class or manually format each byte.

Read more
How to divide a integer and get decimal in C#
By Tan Lee Published on Oct 29, 2024 903

In C#, when you divide two integers using the / operator, the result is also an integer.

Read more
How to get AssemblyTitle in C#
By Tan Lee Published on Oct 25, 2024 509

In C#, you can retrieve the assembly title from the assembly attributes using reflection.

Read more
How to Create Login Form with Access Database in C#
By Tan Lee Published on Jun 01, 2017 17.19K

Creating a login form in C# that interacts with an MS Access database using a DataSet involves several steps.

Read more
How to get excel sheet in C#
By Tan Lee Published on Oct 10, 2024 356

To read an Excel sheet in C# using OleDbConnection, you can follow these steps.

Read more
How to make a Notepad in C#
By Tan Lee Published on Jun 02, 2017 8.11K

Creating a simple Notepad application in a C# Windows Forms Application is a great way to get familiar with Windows Forms and file handling.

Read more
How to Receive SMS from WhatsApp in C#
By Tan Lee Published on Jul 12, 2017 9.72K

To receive WhatsApp messages using C#, you typically need to interact with the WhatsApp Business API or a third-party library, as the official WhatsApp API does not allow direct message reading without proper setup.

Read more
How to read an excel (.xls/.xlsx) file in C#
By Tan Lee Published on May 24, 2017 7.02K

To read an Excel file (.xls or .xlsx) in a C# Windows Forms application using the ExcelDataReader library.

Read more
How to create a Metro Live Tiles in C#
By Tan Lee Published on May 28, 2017 11.97K

Creating Metro Live Tiles using the Metro Framework in C# involves a few key steps.

Read more
How to Generate Barcode in ASP.NET Core using C#
By Tan Lee Published on Jan 02, 2020 5.83K

To generate a barcode in a C# ASP.NET Core application using the BarcodeLib library, follow these steps.

Read more