How To

How to get current date and time from internet in C#
By Tan Lee Published on Nov 09, 2024 760

In C#, you can retrieve the current date and time from the internet by using a time server (also known as an NTP server) to sync with an accurate time source.

How to convert Bytes To Kilobytes in C#
By Tan Lee Published on Nov 09, 2024 305

To convert bytes to kilobytes (KB) in C#, you simply divide the number of bytes by 1024, since 1 kilobyte (KB) is equal to 1024 bytes.

Intersperse implementation in C#
By Tan Lee Published on Nov 09, 2024 212

In this post, I'll demonstrate how to implement an Intersperse method in C# as an extension method on the IEnumerable<T> interface.

How to install a windows service using Windows command prompt
By Tan Lee Published on Nov 09, 2024 248

To install a Windows service using the Command Prompt, you can use the installutil or sc command.

How to add security headers to your ASP.NET Core
By Tan Lee Published on Nov 08, 2024 407

To add security headers to your ASP.NET Core application, you can use middleware that adds the appropriate headers to HTTP responses.

How to download DataTable in Excel format in C#
By Tan Lee Published on Nov 06, 2024 188

To download tabular data such as DataTable data in Excel CSV/TSV format in C#, you can follow these steps.

How to fix 'The conversion of a varchar data type to a datetime data type resulted in an out-of-range value'
By Tan Lee Published on Nov 06, 2024 1.34K

The error you're encountering, "The conversion of a varchar data type to a datetime data type resulted in an out-of-range value," typically occurs when trying to convert a string that doesn't match the expected datetime format for your SQL server's locale or when the string represents an invalid date.

How to convert string array to string with delimiter in C#
By Tan Lee Published on Nov 06, 2024 333

To convert a string array into a single string with a delimiter in C#, you can use the string.Join method.

How to wipe a file completely in C#
By Tan Lee Published on Nov 05, 2024 331

To securely wipe a file in C# according to the HMG IS5 Baseline, you need to follow a procedure that goes beyond simple file deletion.

How to fade in fade out form in C#
By Tan Lee Published on Nov 05, 2024 354

To create a fade-in and fade-out effect for a form in C# Windows Forms, you can manipulate the Opacity property of the form.

How to delete a service in Windows
By Tan Lee Published on Nov 05, 2024 187

To delete a service in Windows, you need to stop the service first and then remove it from the system.

How to fix 'Fetch request to https:www.google.com fails with CORS'
By Tan Lee Published on Nov 05, 2024 229

You are attempting to make a simple `fetch` GET request to `https://www.google.com` to check internet connectivity.