C#

How to Get the amount of RAM available on the System in C#
By Tan Lee Published on Jun 11, 2024 20.02K

How to get the amount of RAM available on the System in C# using System.Management.

Read more
How to print a PDF file in C#
By Tan Lee Published on Jul 08, 2024 1.72K

Printing a PDF file in C# can be accomplished using libraries like RawPrint or Adobe Acrobat.

Read more
How to Read data from Google Sheet in C# using HttpRequest without Speadsheet API
By Tan Lee Published on Sep 14, 2024 1.33K

To read data from a Google Sheet in C# using HttpRequest without using the Google Sheets API, you can leverage the fact that Google Sheets can be published to the web as a CSV file or HTML file.

Read more
How to fix 'Failure sending mail' in C#
By Tan Lee Published on Jul 13, 2024 10.02K

Fixing "Failure sending mail" issues in C# when using Office 365 for sending emails typically involves ensuring that your SMTP settings and authentication credentials are correctly configured.

Read more
C# Tutorial
By Tan Lee Published on Jul 20, 2024 1.2K

This tutorial is designed to guide you through the fundamentals and advanced concepts of C#, a versatile and powerful programming language developed by Microsoft.

Read more
How to use Layout Control in C#
By Tan Lee Published on Jun 21, 2017 7.01K

The DevExpress Layout Control is a versatile layout manager for creating complex user interfaces in WinForms. It provides a flexible way to arrange controls and manage their sizes, positions, and layout behavior.

Read more
How to use DataTable in C#
By Tan Lee Published on Mar 13, 2021 20.08K

In C#, DataTable is a fundamental part of ADO.NET, used to store in-memory data in tabular form. It’s commonly used for handling data retrieved from a database or other data sources.

Read more
How to use Autofac in C#
By Tan Lee Published on May 22, 2024 17.93K

Using dependency injection (DI) container for .NET applications using Autofac in C#

Read more